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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorPageAgent.h

Issue 2189263004: [DevTools] Replace profiling{Started,Stopped} with explicit setOverlaySuspended call. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merged Created 4 years, 5 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/InspectorPageAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
index 19b40ca462674d1d6fc8e1867c4c3212ffc20722..43dfeca558ce1db8a2d2065d8ebb78c9449a6fbe 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorPageAgent.h
@@ -62,7 +62,7 @@ public:
public:
virtual ~Client() { }
virtual void pageLayoutInvalidated(bool resized) { }
- virtual void setPausedInDebuggerMessage(const String&) { }
+ virtual void configureOverlay(bool suspended, const String& message) { }
virtual void waitForCreateWindow(LocalFrame*) { }
};
@@ -108,7 +108,7 @@ public:
void setDocumentContent(ErrorString*, const String& frameId, const String& html) override;
void startScreencast(ErrorString*, const Maybe<String>& format, const Maybe<int>& quality, const Maybe<int>& maxWidth, const Maybe<int>& maxHeight, const Maybe<int>& everyNthFrame) override;
void stopScreencast(ErrorString*) override;
- void setOverlayMessage(ErrorString*, const Maybe<String>& message) override;
+ void configureOverlay(ErrorString*, const Maybe<bool>& suspended, const Maybe<String>& message) override;
void setBlockedEventsWarningThreshold(ErrorString*, double threshold) override;
// InspectorInstrumentation API

Powered by Google App Engine
This is Rietveld 408576698