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

Side by Side Diff: Source/core/inspector/InspectorRuntimeAgent.h

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 | Annotate | Revision Log
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 WTF_MAKE_NONCOPYABLE(InspectorRuntimeAgent); 51 WTF_MAKE_NONCOPYABLE(InspectorRuntimeAgent);
52 public: 52 public:
53 class Client { 53 class Client {
54 public: 54 public:
55 virtual ~Client() { } 55 virtual ~Client() { }
56 56
57 virtual void resumeStartup() { } 57 virtual void resumeStartup() { }
58 virtual bool isRunRequired() { return false; } 58 virtual bool isRunRequired() { return false; }
59 }; 59 };
60 60
61 virtual ~InspectorRuntimeAgent(); 61 ~InspectorRuntimeAgent() override;
62 DECLARE_VIRTUAL_TRACE(); 62 DECLARE_VIRTUAL_TRACE();
63 63
64 // Part of the protocol. 64 // Part of the protocol.
65 void enable(ErrorString*) override; 65 void enable(ErrorString*) override;
66 void disable(ErrorString*) override; 66 void disable(ErrorString*) override;
67 void restore() override; 67 void restore() override;
68 68
69 void evaluate(ErrorString*, 69 void evaluate(ErrorString*,
70 const String& expression, 70 const String& expression,
71 const String* objectGroup, 71 const String* objectGroup,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 class InjectedScriptCallScope; 109 class InjectedScriptCallScope;
110 110
111 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager; 111 RawPtrWillBeMember<InjectedScriptManager> m_injectedScriptManager;
112 V8Debugger* m_debugger; 112 V8Debugger* m_debugger;
113 Client* m_client; 113 Client* m_client;
114 }; 114 };
115 115
116 } // namespace blink 116 } // namespace blink
117 117
118 #endif // InspectorRuntimeAgent_h 118 #endif // InspectorRuntimeAgent_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorResourceContentLoader.cpp ('k') | Source/core/inspector/InspectorState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698