Changeset 139621 in webkit


Ignore:
Timestamp:
Jan 14, 2013 9:40:59 AM (11 years ago)
Author:
haraken@chromium.org
Message:

[V8] Make an Isolate parameter mandatory in ScriptDebugServer::interruptAndRun()
https://bugs.webkit.org/show_bug.cgi?id=106779

Reviewed by Adam Barth.

This is one of steps to make an Isolate parameter mandatory.

No tests. No change in behavior.

Source/WebCore:

  • bindings/v8/ScriptDebugServer.h:

(ScriptDebugServer):

Source/WebKit/chromium:

  • src/WebDevToolsAgentImpl.cpp:

(WebKit::WebDevToolsAgent::interruptAndDispatch):

Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139619 r139621  
     12013-01-14  Kentaro Hara  <haraken@chromium.org>
     2
     3        [V8] Make an Isolate parameter mandatory in ScriptDebugServer::interruptAndRun()
     4        https://bugs.webkit.org/show_bug.cgi?id=106779
     5
     6        Reviewed by Adam Barth.
     7
     8        This is one of steps to make an Isolate parameter mandatory.
     9
     10        No tests. No change in behavior.
     11
     12        * bindings/v8/ScriptDebugServer.h:
     13        (ScriptDebugServer):
     14
    1152013-01-14  Kentaro Hara  <haraken@chromium.org>
    216
  • trunk/Source/WebCore/bindings/v8/ScriptDebugServer.h

    r138534 r139621  
    9494        virtual void run() = 0;
    9595    };
    96     static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate* = 0);
     96    static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate*);
    9797    void runPendingTasks();
    9898
  • trunk/Source/WebKit/chromium/ChangeLog

    r139583 r139621  
     12013-01-14  Kentaro Hara  <haraken@chromium.org>
     2
     3        [V8] Make an Isolate parameter mandatory in ScriptDebugServer::interruptAndRun()
     4        https://bugs.webkit.org/show_bug.cgi?id=106779
     5
     6        Reviewed by Adam Barth.
     7
     8        This is one of steps to make an Isolate parameter mandatory.
     9
     10        No tests. No change in behavior.
     11
     12        * src/WebDevToolsAgentImpl.cpp:
     13        (WebKit::WebDevToolsAgent::interruptAndDispatch):
     14
    1152013-01-13  Vsevolod Vlasov  <vsevik@chromium.org>
    216
  • trunk/Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp

    r138236 r139621  
    734734    OwnPtr<MessageDescriptor> descriptor = adoptPtr(rawDescriptor);
    735735    OwnPtr<DebuggerTask> task = adoptPtr(new DebuggerTask(descriptor.release()));
    736     PageScriptDebugServer::interruptAndRun(task.release());
     736    PageScriptDebugServer::interruptAndRun(task.release(), v8::Isolate::GetCurrent());
    737737}
    738738
Note: See TracChangeset for help on using the changeset viewer.