| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index ed7dfd09d9b2fa84ed613fba855246ee52f7478a..0c19a18ef1b508d4c600f0bba222a7a3f0fdd9e3 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -234,10 +234,10 @@
|
| void didLayout(const InspectorInstrumentationCookie&, RenderObject* root);
|
|
|
| [Page, Inline=FastReturn]
|
| - void didScroll(LocalFrame*);
|
| + void didScroll(Page*);
|
|
|
| [Page, Inline=FastReturn]
|
| - void didResizeMainFrame(LocalFrame*);
|
| + void didResizeMainFrame(Page*);
|
|
|
| [Timeline, Inline=FastReturn]
|
| InspectorInstrumentationCookie willDispatchXHRLoadEvent([Keep] ExecutionContext*, XMLHttpRequest*);
|
| @@ -288,7 +288,7 @@
|
| void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
|
|
|
| [Resource]
|
| - void markResourceAsCached(LocalFrame*, unsigned long identifier);
|
| + void markResourceAsCached(Page*, unsigned long identifier);
|
|
|
| [Timeline, Resource]
|
| void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
|
| @@ -375,7 +375,7 @@
|
| void frameClearedScheduledNavigation([Keep] LocalFrame*);
|
|
|
| [Page, Inline=FastReturn]
|
| - InspectorInstrumentationCookie willRunJavaScriptDialog(LocalFrame*, const String& message);
|
| + InspectorInstrumentationCookie willRunJavaScriptDialog(Page*, const String& message);
|
|
|
| [Page, Inline=FastReturn]
|
| void didRunJavaScriptDialog(const InspectorInstrumentationCookie&);
|
| @@ -402,7 +402,7 @@
|
| void didFireAnimationFrame(const InspectorInstrumentationCookie&);
|
|
|
| [DOMStorage, Inline=FastReturn]
|
| - void didDispatchDOMStorageEvent([Keep] LocalFrame*, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin);
|
| + void didDispatchDOMStorageEvent(Page* page, const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin);
|
|
|
| [Worker]
|
| void didStartWorker(ExecutionContext*, WorkerInspectorProxy* proxy, const KURL& url);
|
| @@ -447,7 +447,7 @@
|
| void didReceiveWebSocketFrameError(Document*, unsigned long identifier, const String& errorMessage);
|
|
|
| [ApplicationCache, Inline=FastReturn]
|
| - void networkStateChanged([Keep] LocalFrame*, bool online);
|
| + void networkStateChanged(Page*, bool online);
|
|
|
| [ApplicationCache, Inline=FastReturn]
|
| void updateApplicationCacheStatus([Keep] LocalFrame*);
|
|
|