• jochen@chromium.org's avatar
    Currently, a new isolate is created in an uninitialized state, and · 65a18578
    jochen@chromium.org authored
    several API methods will automatically initialize it. During this
    uninitialized state, code event handlers and function entry handlers can
    be attached to the isolate.
    
    This CL deprecates SetFunctionEntryHook and moves the configuration of
    those handlers to the Isolate factory method.
    
    This will allow for initializing the Isolate at creation time in the
    future.
    
    Users of V8::SetFunctionEntryHook should pass the entry hook to
    Isolate::New instead. V8::SetJitCodeEventHandler should either be passed
    to Isolate::New as well, or (if startup events are not required) invoked
    via the Isolate.
    
    BUG=none
    LOG=y
    R=svenpanne@chromium.org
    
    Review URL: https://codereview.chromium.org/570993002
    
    git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23940 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
    65a18578