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

Unified Diff: third_party/WebKit/Source/core/inspector/ScriptDebuggerBase.h

Issue 1514523004: DevTools: remove V8DebuggerListener and ScriptDebuggerBase abstractions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments addressed. Created 5 years 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
Index: third_party/WebKit/Source/core/inspector/ScriptDebuggerBase.h
diff --git a/third_party/WebKit/Source/core/inspector/ScriptDebuggerBase.h b/third_party/WebKit/Source/core/inspector/ScriptDebuggerBase.h
deleted file mode 100644
index 3a20fe7957bbf5ebf2a62f83023011f776089b7b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/inspector/ScriptDebuggerBase.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2015 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 ScriptDebuggerBase_h
-#define ScriptDebuggerBase_h
-
-#include "core/CoreExport.h"
-#include "core/inspector/v8/V8Debugger.h"
-#include "core/inspector/v8/V8DebuggerClient.h"
-
-namespace blink {
-
-class CORE_EXPORT ScriptDebuggerBase : public V8DebuggerClient {
- WTF_MAKE_NONCOPYABLE(ScriptDebuggerBase);
-public:
- ScriptDebuggerBase(v8::Isolate*);
- ~ScriptDebuggerBase() override;
- v8::Local<v8::Object> compileDebuggerScript() override;
- V8Debugger* debugger() const { return m_debugger.get(); }
-
-private:
- v8::Isolate* m_isolate;
- OwnPtr<V8Debugger> m_debugger;
-};
-
-} // namespace blink
-
-
-#endif // !defined(ScriptDebuggerBase_h)

Powered by Google App Engine
This is Rietveld 408576698