Index: Source/core/inspector/InspectorInstrumentation.idl |
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl |
index 85066c88951b8a7ea5282e592e5ddf4198729531..c9e3cd0c06a48d1f178c648bc8635a600cba4ded 100644 |
--- a/Source/core/inspector/InspectorInstrumentation.idl |
+++ b/Source/core/inspector/InspectorInstrumentation.idl |
@@ -397,7 +397,7 @@ interface InspectorInstrumentation { |
[WorkerRuntime] |
void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerThreadStartMode); |
- [Worker] |
+ [Worker, Console] |
vsevik
2014/08/12 14:25:13
Let's make an explicit call on the call site inste
sergeyv
2014/08/12 15:37:53
Done.
|
void workerGlobalScopeTerminated(ExecutionContext*, WorkerGlobalScopeProxy* proxy); |
[Profiler, Timeline] |
@@ -484,6 +484,9 @@ class ConsoleMessage; |
[Console] |
void addMessageToConsole(ExecutionContext* context, ConsoleMessage* consoleMessage); |
+ [Console] |
+ void addMessageToConsoleFromWorker(ExecutionContext* context, WorkerGlobalScopeProxy* proxy, ConsoleMessage* consoleMessage); |
+ |
[Console, Debugger] |
void addConsoleAPIMessageToConsole(ExecutionContext* context, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtrWillBeRawPtr<ScriptArguments> arguments, unsigned long requestIdentifier = 0); |