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

Unified Diff: Source/core/inspector/PageDebuggerAgent.h

Issue 638553002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Nits Created 6 years, 2 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
« no previous file with comments | « Source/core/inspector/PageConsoleAgent.cpp ('k') | Source/core/inspector/PageRuntimeAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PageDebuggerAgent.h
diff --git a/Source/core/inspector/PageDebuggerAgent.h b/Source/core/inspector/PageDebuggerAgent.h
index 3d875be7c0ff68f06a31f4804bec885f840fee1e..2d2e317442e3e5ead1ff6cba88f96c20bb96e467 100644
--- a/Source/core/inspector/PageDebuggerAgent.h
+++ b/Source/core/inspector/PageDebuggerAgent.h
@@ -44,7 +44,7 @@ class Page;
class PageScriptDebugServer;
class ScriptSourceCode;
-class PageDebuggerAgent FINAL
+class PageDebuggerAgent final
: public InspectorDebuggerAgent
, public InspectorOverlayHost::Listener {
WTF_MAKE_NONCOPYABLE(PageDebuggerAgent);
@@ -53,28 +53,28 @@ class PageDebuggerAgent FINAL
public:
static PassOwnPtrWillBeRawPtr<PageDebuggerAgent> create(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
virtual ~PageDebuggerAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
void didClearDocumentOfWindowObject(LocalFrame*);
void didCommitLoad(LocalFrame*, DocumentLoader*);
protected:
- virtual void enable() OVERRIDE;
- virtual void disable() OVERRIDE;
+ virtual void enable() override;
+ virtual void disable() override;
private:
- virtual void startListeningScriptDebugServer() OVERRIDE;
- virtual void stopListeningScriptDebugServer() OVERRIDE;
- virtual PageScriptDebugServer& scriptDebugServer() OVERRIDE;
- virtual void muteConsole() OVERRIDE;
- virtual void unmuteConsole() OVERRIDE;
+ virtual void startListeningScriptDebugServer() override;
+ virtual void stopListeningScriptDebugServer() override;
+ virtual PageScriptDebugServer& scriptDebugServer() override;
+ virtual void muteConsole() override;
+ virtual void unmuteConsole() override;
// InspectorOverlayHost::Listener implementation.
- virtual void overlayResumed() OVERRIDE;
- virtual void overlaySteppedOver() OVERRIDE;
+ virtual void overlayResumed() override;
+ virtual void overlaySteppedOver() override;
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
- virtual void setOverlayMessage(ErrorString*, const String*) OVERRIDE;
+ virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ virtual void setOverlayMessage(ErrorString*, const String*) override;
PageDebuggerAgent(PageScriptDebugServer*, InspectorPageAgent*, InjectedScriptManager*, InspectorOverlay*);
// FIXME: Oilpan: Move PageScriptDebugServer to heap in follow-up CL.
« no previous file with comments | « Source/core/inspector/PageConsoleAgent.cpp ('k') | Source/core/inspector/PageRuntimeAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698