Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1213)

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 892693006: Revert of DevTools: use per-LocalFrame instrumenting agents instead of per-Page ones. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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*);
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | Source/core/inspector/InspectorInstrumentationCustomInl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698