| Index: third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| index e336bfe5609889826d4e56bc111fe16e8bc4c3ce..9a02f3fb1cff7d98ba66797ea9d0375f26b3d201 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
|
| @@ -44,6 +44,7 @@ namespace blink {
|
|
|
| namespace probe {
|
| class RecalculateStyle;
|
| +class UpdateLayout;
|
| }
|
|
|
| class Resource;
|
| @@ -157,8 +158,10 @@ class CORE_EXPORT InspectorPageAgent final
|
| void frameClearedScheduledNavigation(LocalFrame*);
|
| void willRunJavaScriptDialog(const String& message, ChromeClient::DialogType);
|
| void didRunJavaScriptDialog(bool result);
|
| - void didUpdateLayout();
|
| void didResizeMainFrame();
|
| + void didChangeViewport();
|
| + void will(const probe::UpdateLayout&);
|
| + void did(const probe::UpdateLayout&);
|
| void will(const probe::RecalculateStyle&);
|
| void did(const probe::RecalculateStyle&);
|
| void windowCreated(LocalFrame*);
|
| @@ -194,6 +197,8 @@ class CORE_EXPORT InspectorPageAgent final
|
| bool withBase64Encode,
|
| String* result);
|
|
|
| + void pageLayoutInvalidated(bool resized);
|
| +
|
| std::unique_ptr<protocol::Page::Frame> buildObjectForFrame(LocalFrame*);
|
| std::unique_ptr<protocol::Page::FrameResourceTree> buildObjectForFrameTree(
|
| LocalFrame*);
|
|
|