Index: content/browser/debugger/devtools_manager.h |
diff --git a/content/browser/debugger/devtools_manager.h b/content/browser/debugger/devtools_manager.h |
index b2d533845b511fbe7179e97981d2b1b6504b26db..1801d0c1eb5638bd7772d52b6a4a1a33ec1caf3f 100644 |
--- a/content/browser/debugger/devtools_manager.h |
+++ b/content/browser/debugger/devtools_manager.h |
@@ -9,6 +9,7 @@ |
#include <map> |
#include <string> |
+#include "base/compiler_specific.h" |
#include "content/browser/debugger/devtools_agent_host.h" |
#include "content/browser/debugger/devtools_client_host.h" |
#include "content/common/content_export.h" |
@@ -91,10 +92,10 @@ class CONTENT_EXPORT DevToolsManager |
// This method will remove all references from the manager to the |
// DevToolsClientHost and unregister all listeners related to the |
// DevToolsClientHost. |
- virtual void ClientHostClosing(DevToolsClientHost* host); |
+ virtual void ClientHostClosing(DevToolsClientHost* host) OVERRIDE; |
// DevToolsAgentHost::CloseListener implementation. |
- virtual void AgentHostClosing(DevToolsAgentHost* host); |
+ virtual void AgentHostClosing(DevToolsAgentHost* host) OVERRIDE; |
// Returns DevToolsAgentHost inspected by the DevToolsClientHost. |
DevToolsAgentHost* GetAgentHost(DevToolsClientHost* client_host); |