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

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

Issue 2713553010: Migrate performance monitor to inspector instrumentation. (Closed)
Patch Set: Introduce progress monitor Created 3 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: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
index 296ae19ef378e04861039a0e5c30ed62953cb2c8..84d9898d9411d3683968f0ab629f0377cab2ed85 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -137,7 +137,10 @@ class XMLHttpRequest;
[DOMDebugger]
void didFireWebGLErrorOrWarning(Element*, const String& message);
- [Page]
+ [Performance]
+ void willUpdateLayout(Document*);
+
+ [Page, Performance]
void didUpdateLayout(LocalFrame*);
[Page]
@@ -318,10 +321,10 @@ class XMLHttpRequest;
[Log]
void consoleMessageAdded(ExecutionContext*, ConsoleMessage*);
- [Network]
+ [Network, Performance]
void willRecalculateStyle([Keep] Document*);
- [Page, Network]
+ [Page, Network, Performance]
void didRecalculateStyle(Document*);
[Page]
@@ -329,6 +332,21 @@ class XMLHttpRequest;
[Page]
void didRunJavaScriptDialog(LocalFrame* frame, bool result);
+
+ [Performance]
+ void willExecuteScript([Keep] ExecutionContext*);
+
+ [Performance]
+ void didExecuteScript(ExecutionContext*);
+
+ [Performance]
+ void willCallFunction([Keep] ExecutionContext*);
+
+ [Performance]
+ void didCallFunction([Keep] ExecutionContext*, v8::Local<v8::Function>);
+
+ [Performance]
+ void documentWriteFetchScript([Keep] Document*);
}
interface InspectorOverrides {

Powered by Google App Engine
This is Rietveld 408576698