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

Unified Diff: content/renderer/devtools/devtools_agent.h

Issue 251363003: Add OVERRIDE annotation where appropriate in devtools_agent.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed nit Created 6 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/devtools/devtools_agent.h
diff --git a/content/renderer/devtools/devtools_agent.h b/content/renderer/devtools/devtools_agent.h
index 9d58d97a06b66339545e96821fd2f8fc1725b331..17889fdf9537691d5e2f84339c50c9cc6e92c21b 100644
--- a/content/renderer/devtools/devtools_agent.h
+++ b/content/renderer/devtools/devtools_agent.h
@@ -50,13 +50,13 @@ class DevToolsAgent : public RenderViewObserver,
// WebDevToolsAgentClient implementation
virtual void sendMessageToInspectorFrontend(const blink::WebString& data);
- virtual int hostIdentifier();
- virtual void saveAgentRuntimeState(const blink::WebString& state);
+ virtual int hostIdentifier() OVERRIDE;
+ virtual void saveAgentRuntimeState(const blink::WebString& state) OVERRIDE;
virtual blink::WebDevToolsAgentClient::WebKitClientMessageLoop*
- createClientMessageLoop();
- virtual void clearBrowserCache();
- virtual void clearBrowserCookies();
- virtual void visitAllocatedObjects(AllocatedObjectVisitor* visitor);
+ createClientMessageLoop() OVERRIDE;
+ virtual void clearBrowserCache() OVERRIDE;
+ virtual void clearBrowserCookies() OVERRIDE;
+ virtual void visitAllocatedObjects(AllocatedObjectVisitor* visitor) OVERRIDE;
typedef void (*TraceEventCallback)(
char phase, const unsigned char*, const char* name, unsigned long long id,
@@ -74,9 +74,10 @@ class DevToolsAgent : public RenderViewObserver,
const blink::WebRect& view_rect, float device_scale_factor,
bool fit_to_view);
virtual void enableDeviceEmulation(
- const blink::WebDeviceEmulationParams& params);
- virtual void disableDeviceEmulation();
- virtual void setTouchEventEmulationEnabled(bool enabled, bool allow_pinch);
+ const blink::WebDeviceEmulationParams& params) OVERRIDE;
+ virtual void disableDeviceEmulation() OVERRIDE;
+ virtual void setTouchEventEmulationEnabled(bool enabled,
+ bool allow_pinch) OVERRIDE;
void OnAttach();
void OnReattach(const std::string& agent_state);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698