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

Unified Diff: Source/bindings/v8/V8PerIsolateData.h

Issue 167683003: use v8 Microtask Queue (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: cr changes Created 6 years, 10 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: Source/bindings/v8/V8PerIsolateData.h
diff --git a/Source/bindings/v8/V8PerIsolateData.h b/Source/bindings/v8/V8PerIsolateData.h
index 3d71809f1b8805c787e0fa5933429aa0610060b9..29c25ce8aef01c55bdbc9a71f79961a99cef0943 100644
--- a/Source/bindings/v8/V8PerIsolateData.h
+++ b/Source/bindings/v8/V8PerIsolateData.h
@@ -124,7 +124,7 @@ public:
bool hasInstanceInMainWorld(const WrapperTypeInfo*, v8::Handle<v8::Value>);
bool hasInstanceInNonMainWorld(const WrapperTypeInfo*, v8::Handle<v8::Value>);
- v8::Local<v8::Context> ensureRegexContext();
+ v8::Local<v8::Context> ensureDomInJSContext();
const char* previousSamplingState() const { return m_previousSamplingState; }
void setPreviousSamplingState(const char* name) { m_previousSamplingState = name; }
@@ -145,7 +145,7 @@ private:
Vector<DOMDataStore*> m_domDataStoreList;
ScopedPersistent<v8::Value> m_liveRoot;
- ScopedPersistent<v8::Context> m_regexContext;
+ ScopedPersistent<v8::Context> m_domInJSContext;
const char* m_previousSamplingState;

Powered by Google App Engine
This is Rietveld 408576698