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; |
}; |