| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.h
|
| index 5d56bbbffc463449f57ba71929b77c9b1b86d717..bb078474f9bd92f2a93470af86c9d541249a814f 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8Inspector.h
|
| @@ -10,16 +10,12 @@
|
|
|
| #include <v8.h>
|
|
|
| -namespace blink {
|
| +namespace v8_inspector {
|
|
|
| class V8InspectorClient;
|
| class V8InspectorSession;
|
| class V8StackTrace;
|
|
|
| -namespace protocol {
|
| -class FrontendChannel;
|
| -}
|
| -
|
| class PLATFORM_EXPORT V8Inspector {
|
| public:
|
| static std::unique_ptr<V8Inspector> create(v8::Isolate*, V8InspectorClient*);
|
| @@ -48,12 +44,12 @@ public:
|
| virtual void exceptionRevoked(v8::Local<v8::Context>, unsigned exceptionId, const String16& message) = 0;
|
|
|
| // API methods.
|
| - virtual std::unique_ptr<V8InspectorSession> connect(int contextGroupId, protocol::FrontendChannel*, const String16* state) = 0;
|
| + virtual std::unique_ptr<V8InspectorSession> connect(int contextGroupId, blink::protocol::FrontendChannel*, const String16* state) = 0;
|
| virtual std::unique_ptr<V8StackTrace> createStackTrace(v8::Local<v8::StackTrace>) = 0;
|
| virtual std::unique_ptr<V8StackTrace> captureStackTrace(bool fullStack) = 0;
|
| };
|
|
|
| -} // namespace blink
|
| +} // namespace v8_inspector
|
|
|
|
|
| #endif // V8Inspector_h
|
|
|