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

Unified Diff: Source/core/inspector/PageConsoleAgent.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/InspectorWorkerAgent.cpp ('k') | Source/core/inspector/PageConsoleAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PageConsoleAgent.h
diff --git a/Source/core/inspector/PageConsoleAgent.h b/Source/core/inspector/PageConsoleAgent.h
index bd7a46cdac2f8b4571f892cc3e3715cce3812e30..e3b7a70dd05d28b3a856d95ba3b809ab36c1a44d 100644
--- a/Source/core/inspector/PageConsoleAgent.h
+++ b/Source/core/inspector/PageConsoleAgent.h
@@ -40,7 +40,7 @@ class ConsoleMessageStorage;
class InspectorDOMAgent;
class Page;
-class PageConsoleAgent FINAL : public InspectorConsoleAgent {
+class PageConsoleAgent final : public InspectorConsoleAgent {
WTF_MAKE_NONCOPYABLE(PageConsoleAgent);
public:
static PassOwnPtrWillBeRawPtr<PageConsoleAgent> create(InjectedScriptManager* injectedScriptManager, InspectorDOMAgent* domAgent, InspectorTimelineAgent* timelineAgent, Page* page)
@@ -48,17 +48,17 @@ public:
return adoptPtrWillBeNoop(new PageConsoleAgent(injectedScriptManager, domAgent, timelineAgent, page));
}
virtual ~PageConsoleAgent();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
- virtual bool isWorkerAgent() OVERRIDE { return false; }
+ virtual bool isWorkerAgent() override { return false; }
protected:
- virtual ConsoleMessageStorage* messageStorage() OVERRIDE;
+ virtual ConsoleMessageStorage* messageStorage() override;
private:
PageConsoleAgent(InjectedScriptManager*, InspectorDOMAgent*, InspectorTimelineAgent*, Page*);
- virtual void clearMessages(ErrorString*) OVERRIDE;
- virtual void addInspectedNode(ErrorString*, int nodeId) OVERRIDE;
+ virtual void clearMessages(ErrorString*) override;
+ virtual void addInspectedNode(ErrorString*, int nodeId) override;
RawPtrWillBeMember<InspectorDOMAgent> m_inspectorDOMAgent;
RawPtrWillBeMember<Page> m_page;
« no previous file with comments | « Source/core/inspector/InspectorWorkerAgent.cpp ('k') | Source/core/inspector/PageConsoleAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698