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

Unified Diff: src/inspector/v8-debugger-script.h

Issue 2549133002: [debug] Remove DebugInterface class (Closed)
Patch Set: Fix overall CL ;) Created 4 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: src/inspector/v8-debugger-script.h
diff --git a/src/inspector/v8-debugger-script.h b/src/inspector/v8-debugger-script.h
index 6ed72d22f408a25c58492a5023b5af33e73010d0..38b7bc8dd6fc5c34ad51e551419caca654937f9d 100644
--- a/src/inspector/v8-debugger-script.h
+++ b/src/inspector/v8-debugger-script.h
@@ -40,8 +40,7 @@ namespace v8_inspector {
class V8DebuggerScript {
public:
- V8DebuggerScript(v8::Isolate* isolate,
- v8::Local<v8::DebugInterface::Script> script,
+ V8DebuggerScript(v8::Isolate* isolate, v8::Local<v8::debug::Script> script,
bool isLiveEdit);
V8DebuggerScript(String16 id, String16 url, String16 source);
~V8DebuggerScript();
@@ -88,7 +87,7 @@ class V8DebuggerScript {
bool m_isLiveEdit = false;
v8::Isolate* m_isolate;
- v8::Global<v8::DebugInterface::Script> m_script;
+ v8::Global<v8::debug::Script> m_script;
DISALLOW_COPY_AND_ASSIGN(V8DebuggerScript);
};

Powered by Google App Engine
This is Rietveld 408576698