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

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

Issue 2732643003: DevTools: remove PerformanceMonitor::HandlerCall, migrate to the new scoped probes. (Closed)
Patch Set: Introduce progress monitor Created 3 years, 9 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 042014ec5841fa29d9690dab2ace39703fa2ce4e..91daa0c993da4dde1bae7bcce087897c22998b67 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -137,12 +137,6 @@ class XMLHttpRequest;
[DOMDebugger]
void didFireWebGLErrorOrWarning(Element*, const String& message);
- [Performance]
- void willUpdateLayout(Document*);
-
- [Page, Performance]
- void didUpdateLayout(LocalFrame*);
-
[Page]
void didResizeMainFrame(LocalFrame*);
@@ -318,9 +312,6 @@ class XMLHttpRequest;
[Log]
void consoleMessageAdded(ExecutionContext*, ConsoleMessage*);
- [Page, Performance]
- RecalculateStyle(Document*);
-
[Page]
void willRunJavaScriptDialog(LocalFrame* frame, const String& message, ChromeClient::DialogType dialogType);
@@ -328,19 +319,25 @@ class XMLHttpRequest;
void didRunJavaScriptDialog(LocalFrame* frame, bool result);
[Performance]
- void willExecuteScript([Keep] ExecutionContext*);
+ void documentWriteFetchScript([Keep] Document*);
- [Performance]
- void didExecuteScript(ExecutionContext*);
+ [Page]
+ void didChangeViewport(LocalFrame* document);
+
+ [Page, Performance]
+ RecalculateStyle(Document* document);
+
+ [Page, Performance]
+ UpdateLayout(Document*);
[Performance]
- void willCallFunction([Keep] ExecutionContext*);
+ ExecuteScript([Keep] ExecutionContext* context);
[Performance]
- void didCallFunction([Keep] ExecutionContext*, v8::Local<v8::Function>);
+ CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> function);
[Performance]
- void documentWriteFetchScript([Keep] Document*);
+ UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicString& atomicName, bool recurring);
}
interface InspectorOverrides {

Powered by Google App Engine
This is Rietveld 408576698