| 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 {
|
|
|