Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.h

Issue 2232443002: [DevTools] Remove SimpleInspector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.h b/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.h
deleted file mode 100644
index fc5426ba7c695e35da63dd5f7887a382f2da248a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef SimpleInspector_h
-#define SimpleInspector_h
-
-#include "platform/inspector_protocol/Platform.h"
-#include "platform/v8_inspector/public/V8InspectorClient.h"
-
-#include <v8.h>
-
-namespace blink {
-
-namespace protocol {
-class Dispatcher;
-class Frontend;
-class FrontendChannel;
-}
-
-class V8Inspector;
-class V8InspectorSession;
-
-class SimpleInspector : public V8InspectorClient {
-public:
- SimpleInspector(v8::Isolate*, v8::Local<v8::Context>);
- ~SimpleInspector() override;
-
- // Transport interface.
- void connectFrontend(protocol::FrontendChannel*);
- void disconnectFrontend();
- void dispatchMessageFromFrontend(const String16& message);
- void notifyContextDestroyed();
-
-private:
- v8::Local<v8::Context> ensureDefaultContextInGroup(int contextGroupId) override;
-
- std::unique_ptr<V8Inspector> m_inspector;
- std::unique_ptr<V8InspectorSession> m_session;
- v8::Local<v8::Context> m_context;
-};
-
-}
-
-#endif // SimpleInspector_h
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/v8_inspector/public/SimpleInspector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698