Index: third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h |
index 691679f3cf5e7ac6749d793f088622c3afd5fc8a..7ec63691466072e7aa0f80c40795e44c318d712d 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h |
@@ -14,17 +14,20 @@ |
namespace blink { |
-class JSONObject; |
class V8DebuggerClient; |
class V8StackTrace; |
+namespace protocol { |
+class DictionaryValue; |
+} |
+ |
class PLATFORM_EXPORT V8Debugger { |
USING_FAST_MALLOC(V8Debugger); |
public: |
template <typename T> |
class Agent { |
public: |
- virtual void setInspectorState(PassRefPtr<JSONObject>) = 0; |
+ virtual void setInspectorState(PassRefPtr<protocol::DictionaryValue>) = 0; |
virtual void setFrontend(T*) = 0; |
virtual void clearFrontend() = 0; |
virtual void restore() = 0; |