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

Unified Diff: Source/core/inspector/PageRuntimeAgent.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/PageDebuggerAgent.h ('k') | Source/core/inspector/PromiseTracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/PageRuntimeAgent.h
diff --git a/Source/core/inspector/PageRuntimeAgent.h b/Source/core/inspector/PageRuntimeAgent.h
index cba1b633de391373e2f9fcec2c34b91362301d2f..d67b383174b6ac2d4273efcc2f11e42af9045fc3 100644
--- a/Source/core/inspector/PageRuntimeAgent.h
+++ b/Source/core/inspector/PageRuntimeAgent.h
@@ -42,17 +42,17 @@ class InspectorPageAgent;
class Page;
class SecurityOrigin;
-class PageRuntimeAgent FINAL : public InspectorRuntimeAgent {
+class PageRuntimeAgent final : public InspectorRuntimeAgent {
public:
static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager* injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebugServer, Page* page, InspectorPageAgent* pageAgent)
{
return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, client, scriptDebugServer, page, pageAgent));
}
virtual ~PageRuntimeAgent();
- virtual void trace(Visitor*) OVERRIDE;
- virtual void init() OVERRIDE;
- virtual void enable(ErrorString*) OVERRIDE;
- virtual void run(ErrorString*) OVERRIDE;
+ virtual void trace(Visitor*) override;
+ virtual void init() override;
+ virtual void enable(ErrorString*) override;
+ virtual void run(ErrorString*) override;
void didClearDocumentOfWindowObject(LocalFrame*);
void didCreateIsolatedContext(LocalFrame*, ScriptState*, SecurityOrigin*);
@@ -61,9 +61,9 @@ public:
private:
PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer*, Page*, InspectorPageAgent*);
- virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) OVERRIDE;
- virtual void muteConsole() OVERRIDE;
- virtual void unmuteConsole() OVERRIDE;
+ virtual InjectedScript injectedScriptForEval(ErrorString*, const int* executionContextId) override;
+ virtual void muteConsole() override;
+ virtual void unmuteConsole() override;
void reportExecutionContextCreation();
InspectorClient* m_client;
« no previous file with comments | « Source/core/inspector/PageDebuggerAgent.h ('k') | Source/core/inspector/PromiseTracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698