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

Unified Diff: Source/core/inspector/InspectorConsoleAgent.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/InspectorCanvasAgent.cpp ('k') | Source/core/inspector/InspectorConsoleAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorConsoleAgent.h
diff --git a/Source/core/inspector/InspectorConsoleAgent.h b/Source/core/inspector/InspectorConsoleAgent.h
index e63a8ed577c974560711609ca6afa0c85ee896b6..cea43950e59540c39fdd1062f89e843059c99e4e 100644
--- a/Source/core/inspector/InspectorConsoleAgent.h
+++ b/Source/core/inspector/InspectorConsoleAgent.h
@@ -67,16 +67,16 @@ class InspectorConsoleAgent : public InspectorBaseAgent<InspectorConsoleAgent>,
public:
InspectorConsoleAgent(InspectorTimelineAgent*, InjectedScriptManager*);
virtual ~InspectorConsoleAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
- virtual void enable(ErrorString*) OVERRIDE FINAL;
- virtual void disable(ErrorString*) OVERRIDE FINAL;
- virtual void clearMessages(ErrorString*) OVERRIDE;
+ virtual void enable(ErrorString*) override final;
+ virtual void disable(ErrorString*) override final;
+ virtual void clearMessages(ErrorString*) override;
bool enabled() { return m_enabled; }
- virtual void setFrontend(InspectorFrontend*) OVERRIDE FINAL;
- virtual void clearFrontend() OVERRIDE FINAL;
- virtual void restore() OVERRIDE FINAL;
+ virtual void setFrontend(InspectorFrontend*) override final;
+ virtual void clearFrontend() override final;
+ virtual void restore() override final;
void addMessageToConsole(ConsoleMessage*);
void consoleMessagesCleared();
@@ -90,9 +90,9 @@ public:
void didFinishXHRLoading(XMLHttpRequest*, ThreadableLoaderClient*, unsigned long requestIdentifier, ScriptString, const AtomicString& method, const String& url, const String& sendURL, unsigned sendLineNumber);
void addProfileFinishedMessageToConsole(PassRefPtrWillBeRawPtr<ScriptProfile>, unsigned lineNumber, const String& sourceURL);
void addStartProfilingMessageToConsole(const String& title, unsigned lineNumber, const String& sourceURL);
- virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) OVERRIDE;
+ virtual void setMonitoringXHREnabled(ErrorString*, bool enabled) override;
virtual void addInspectedNode(ErrorString*, int nodeId) = 0;
- virtual void addInspectedHeapObject(ErrorString*, int inspectedHeapObjectId) OVERRIDE;
+ virtual void addInspectedHeapObject(ErrorString*, int inspectedHeapObjectId) override;
virtual bool isWorkerAgent() = 0;
« no previous file with comments | « Source/core/inspector/InspectorCanvasAgent.cpp ('k') | Source/core/inspector/InspectorConsoleAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698