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

Unified Diff: sky/engine/bindings/core/v8/V8PerIsolateData.h

Issue 727593004: Wire up the Inspector V8 Debugger (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Actually works Created 6 years, 1 month 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: sky/engine/bindings/core/v8/V8PerIsolateData.h
diff --git a/sky/engine/bindings/core/v8/V8PerIsolateData.h b/sky/engine/bindings/core/v8/V8PerIsolateData.h
index 2b0362b856eda417a6b9ad0706ca2b0f93c4038c..06441bd2c112194b4bc9f6c97478328ed189552b 100644
--- a/sky/engine/bindings/core/v8/V8PerIsolateData.h
+++ b/sky/engine/bindings/core/v8/V8PerIsolateData.h
@@ -94,6 +94,8 @@ public:
bool hasInstance(const WrapperTypeInfo*, v8::Handle<v8::Value>);
v8::Handle<v8::Object> findInstanceInPrototypeChain(const WrapperTypeInfo*, v8::Handle<v8::Value>);
+ v8::Local<v8::Context> ensureScriptRegexpContext();
+
const char* previousSamplingState() const { return m_previousSamplingState; }
void setPreviousSamplingState(const char* name) { m_previousSamplingState = name; }
@@ -113,6 +115,7 @@ private:
OwnPtr<StringCache> m_stringCache;
OwnPtr<V8HiddenValue> m_hiddenValue;
ScopedPersistent<v8::Value> m_liveRoot;
+ RefPtr<ScriptState> m_scriptRegexpScriptState;
const char* m_previousSamplingState;

Powered by Google App Engine
This is Rietveld 408576698