diff options
Diffstat (limited to 'content/browser/debugger/debugger_host.h')
-rw-r--r-- | content/browser/debugger/debugger_host.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/browser/debugger/debugger_host.h b/content/browser/debugger/debugger_host.h index 493fde6..44482d5 100644 --- a/content/browser/debugger/debugger_host.h +++ b/content/browser/debugger/debugger_host.h @@ -13,7 +13,9 @@ #include "base/basictypes.h" #include "base/memory/ref_counted.h" +namespace base { class ListValue; +} class DebuggerHost : public base::RefCountedThreadSafe<DebuggerHost> { public: @@ -36,7 +38,7 @@ class DebuggerHost : public base::RefCountedThreadSafe<DebuggerHost> { virtual void ProcessCommand(const std::wstring& data) {} // Handles messages from debugger UI. - virtual void OnDebuggerHostMsg(const ListValue* args) {} + virtual void OnDebuggerHostMsg(const base::ListValue* args) {} // Shows the debugger UI and returns true if it has any. virtual bool ShowWindow() { return false; } |