| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index 41e5840ce40b674c57e1297b7c0ae0274241a881..3fc7cfd5e680df59b8ec8309466fef7c0313a9c8 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -373,13 +373,13 @@ interface InspectorInstrumentation {
|
| void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin);
|
|
|
| [Worker]
|
| - void didStartWorkerContext(ScriptExecutionContext*, WorkerContextProxy* proxy, const KURL& url);
|
| + void didStartWorkerGlobalScope(ScriptExecutionContext*, WorkerGlobalScopeProxy* proxy, const KURL& url);
|
|
|
| [WorkerRuntime]
|
| - void willEvaluateWorkerScript([Keep] WorkerContext* context, int workerThreadStartMode);
|
| + void willEvaluateWorkerScript([Keep] WorkerGlobalScope* context, int workerThreadStartMode);
|
|
|
| [Worker]
|
| - void workerContextTerminated(ScriptExecutionContext*, WorkerContextProxy* proxy);
|
| + void workerGlobalScopeTerminated(ScriptExecutionContext*, WorkerGlobalScopeProxy* proxy);
|
|
|
| [Resource, Timeline]
|
| void didCreateWebSocket([Keep] Document*, unsigned long identifier, const KURL& requestURL, const String& protocol);
|
| @@ -435,10 +435,10 @@ interface InspectorConsoleInstrumentation {
|
|
|
| // FIXME: Convert to ScriptArguments to match non-worker context.
|
| // Use the same implementation as above as a similar method dispatched on Page.
|
| - void addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier = 0);
|
| + void addMessageToConsole(WorkerGlobalScope* workerGlobalScope, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier = 0);
|
|
|
| // Use the same implementation as above as a similar method dispatched on Page.
|
| - void addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, ScriptState* state, unsigned long requestIdentifier = 0);
|
| + void addMessageToConsole(WorkerGlobalScope* workerGlobalScope, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, ScriptState* state, unsigned long requestIdentifier = 0);
|
|
|
| [Console]
|
| void consoleCount(Page* page, ScriptState* state, PassRefPtr<ScriptArguments> arguments);
|
|
|