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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « Source/core/inspector/PageDebuggerAgent.h ('k') | Source/core/inspector/PromiseTracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 24 matching lines...) Expand all
35 #include "core/inspector/InspectorRuntimeAgent.h" 35 #include "core/inspector/InspectorRuntimeAgent.h"
36 #include "wtf/PassOwnPtr.h" 36 #include "wtf/PassOwnPtr.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class InspectorClient; 40 class InspectorClient;
41 class InspectorPageAgent; 41 class InspectorPageAgent;
42 class Page; 42 class Page;
43 class SecurityOrigin; 43 class SecurityOrigin;
44 44
45 class PageRuntimeAgent FINAL : public InspectorRuntimeAgent { 45 class PageRuntimeAgent final : public InspectorRuntimeAgent {
46 public: 46 public:
47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager * injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug Server, Page* page, InspectorPageAgent* pageAgent) 47 static PassOwnPtrWillBeRawPtr<PageRuntimeAgent> create(InjectedScriptManager * injectedScriptManager, InspectorClient* client, ScriptDebugServer* scriptDebug Server, Page* page, InspectorPageAgent* pageAgent)
48 { 48 {
49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl ient, scriptDebugServer, page, pageAgent)); 49 return adoptPtrWillBeNoop(new PageRuntimeAgent(injectedScriptManager, cl ient, scriptDebugServer, page, pageAgent));
50 } 50 }
51 virtual ~PageRuntimeAgent(); 51 virtual ~PageRuntimeAgent();
52 virtual void trace(Visitor*) OVERRIDE; 52 virtual void trace(Visitor*) override;
53 virtual void init() OVERRIDE; 53 virtual void init() override;
54 virtual void enable(ErrorString*) OVERRIDE; 54 virtual void enable(ErrorString*) override;
55 virtual void run(ErrorString*) OVERRIDE; 55 virtual void run(ErrorString*) override;
56 56
57 void didClearDocumentOfWindowObject(LocalFrame*); 57 void didClearDocumentOfWindowObject(LocalFrame*);
58 void didCreateIsolatedContext(LocalFrame*, ScriptState*, SecurityOrigin*); 58 void didCreateIsolatedContext(LocalFrame*, ScriptState*, SecurityOrigin*);
59 void frameWindowDiscarded(LocalDOMWindow*); 59 void frameWindowDiscarded(LocalDOMWindow*);
60 60
61 private: 61 private:
62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer *, Page*, InspectorPageAgent*); 62 PageRuntimeAgent(InjectedScriptManager*, InspectorClient*, ScriptDebugServer *, Page*, InspectorPageAgent*);
63 63
64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) OVERRIDE; 64 virtual InjectedScript injectedScriptForEval(ErrorString*, const int* execut ionContextId) override;
65 virtual void muteConsole() OVERRIDE; 65 virtual void muteConsole() override;
66 virtual void unmuteConsole() OVERRIDE; 66 virtual void unmuteConsole() override;
67 void reportExecutionContextCreation(); 67 void reportExecutionContextCreation();
68 68
69 InspectorClient* m_client; 69 InspectorClient* m_client;
70 RawPtrWillBeMember<Page> m_inspectedPage; 70 RawPtrWillBeMember<Page> m_inspectedPage;
71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent; 71 RawPtrWillBeMember<InspectorPageAgent> m_pageAgent;
72 bool m_mainWorldContextCreated; 72 bool m_mainWorldContextCreated;
73 }; 73 };
74 74
75 } // namespace blink 75 } // namespace blink
76 76
77 77
78 #endif // !defined(InspectorPagerAgent_h) 78 #endif // !defined(InspectorPagerAgent_h)
OLDNEW
« 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