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

Unified Diff: third_party/WebKit/Source/web/InspectorOverlay.h

Issue 1933573002: [DevTools] Remove last bits of logic from v8 agent wrappers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1913283003
Patch Set: rebased, fixed uninitialized variable Created 4 years, 7 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/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;

Powered by Google App Engine
This is Rietveld 408576698