| Index: third_party/WebKit/Source/web/InspectorOverlay.h
|
| diff --git a/third_party/WebKit/Source/web/InspectorOverlay.h b/third_party/WebKit/Source/web/InspectorOverlay.h
|
| index 5d619bb91603da5f401d51bcb11828c9d63e9706..c583e343bb5f5e7c4abc606a399cc9e0d0f78cc1 100644
|
| --- a/third_party/WebKit/Source/web/InspectorOverlay.h
|
| +++ b/third_party/WebKit/Source/web/InspectorOverlay.h
|
| @@ -66,7 +66,6 @@ class Value;
|
| class InspectorOverlay final
|
| : public GarbageCollectedFinalized<InspectorOverlay>
|
| , public InspectorDOMAgent::Client
|
| - , public InspectorProfilerAgent::Client
|
| , public InspectorOverlayHost::Listener {
|
| USING_GARBAGE_COLLECTED_MIXIN(InspectorOverlay);
|
| public:
|
| @@ -81,6 +80,8 @@ public:
|
| void init(InspectorCSSAgent*, InspectorDebuggerAgent*, InspectorDOMAgent*);
|
|
|
| void clear();
|
| + void suspend();
|
| + void resume();
|
| bool handleInputEvent(const WebInputEvent&);
|
| void pageLayoutInvalidated(bool resized);
|
| void setShowViewportSizeOnResize(bool);
|
| @@ -107,10 +108,6 @@ private:
|
| void overlayNextSelector() override;
|
| void overlayPreviousSelector() override;
|
|
|
| - // InspectorProfilerAgent::Client implementation.
|
| - void profilingStarted() override;
|
| - void profilingStopped() override;
|
| -
|
| // InspectorDOMAgent::Client implementation.
|
| void hideHighlight() override;
|
| void highlightNode(Node*, const InspectorHighlightConfig&, bool omitTooltip) override;
|
|
|