summaryrefslogtreecommitdiffstats
path: root/content/browser/debugger/devtools_remote_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/debugger/devtools_remote_service.h')
-rw-r--r--content/browser/debugger/devtools_remote_service.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/content/browser/debugger/devtools_remote_service.h b/content/browser/debugger/devtools_remote_service.h
index 377e4b3..165e277 100644
--- a/content/browser/debugger/devtools_remote_service.h
+++ b/content/browser/debugger/devtools_remote_service.h
@@ -11,8 +11,10 @@
class DevToolsRemoteMessage;
class DevToolsProtocolHandler;
+
+namespace base {
class DictionaryValue;
-class Value;
+}
// Contains constants for DevToolsRemoteService tool protocol commands.
struct DevToolsRemoteServiceCommand {
@@ -39,7 +41,8 @@ class DevToolsRemoteService : public DevToolsRemoteListener {
static const int kUnknownCommand = 1;
};
virtual ~DevToolsRemoteService();
- void ProcessJson(DictionaryValue* json, const DevToolsRemoteMessage& message);
+ void ProcessJson(base::DictionaryValue* json,
+ const DevToolsRemoteMessage& message);
DevToolsProtocolHandler* delegate_;
DISALLOW_COPY_AND_ASSIGN(DevToolsRemoteService);
};