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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h

Issue 1636343002: Drop dependency on ScopedPersistent from inspector/v8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h b/third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h
index 902dd7479967b9f94fbbc8d2713d4b1b122acdb4..6a8727605fe2498bdf305bc6f4445cbe1f35f50a 100644
--- a/third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h
+++ b/third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.h
@@ -32,7 +32,6 @@
#define JavaScriptCallFrame_h
-#include "bindings/core/v8/ScopedPersistent.h"
#include "bindings/core/v8/ScriptState.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
@@ -84,8 +83,8 @@ private:
v8::Isolate* m_isolate;
RefPtr<JavaScriptCallFrame> m_caller;
- ScopedPersistent<v8::Context> m_debuggerContext;
- ScopedPersistent<v8::Object> m_callFrame;
+ v8::Global<v8::Context> m_debuggerContext;
+ v8::Global<v8::Object> m_callFrame;
v8::Global<v8::FunctionTemplate> m_wrapperTemplate;
};
« no previous file with comments | « third_party/WebKit/Source/core/inspector/v8/DEPS ('k') | third_party/WebKit/Source/core/inspector/v8/JavaScriptCallFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698