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