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

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

Issue 688033003: Fix line numbers in JavaScript stack traces (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Remove unnecessary Created 6 years, 2 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
« no previous file with comments | « sky/engine/bindings/core/v8/ScriptController.cpp ('k') | sky/engine/bindings/core/v8/V8PerContextData.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/core/v8/V8PerContextData.h
diff --git a/sky/engine/bindings/core/v8/V8PerContextData.h b/sky/engine/bindings/core/v8/V8PerContextData.h
index 018a3dc4791f0de891b871ae628126b001f9c4b7..7a6b865e9ce84267821a4e0f02f165a0a1693958 100644
--- a/sky/engine/bindings/core/v8/V8PerContextData.h
+++ b/sky/engine/bindings/core/v8/V8PerContextData.h
@@ -63,7 +63,6 @@ public:
~V8PerContextData();
v8::Handle<v8::Context> context() { return m_context.newLocal(m_isolate); }
- v8::Handle<v8::Function> functionConstructor() { return m_functionConstructor.newLocal(m_isolate); }
// To create JS Wrapper objects, we create a cache of a 'boiler plate'
// object, and then simply Clone that object each time we need a new one.
@@ -106,7 +105,6 @@ private:
ScopedPersistent<v8::Context> m_context;
ScopedPersistent<v8::Value> m_errorPrototype;
- ScopedPersistent<v8::Function> m_functionConstructor;
typedef WTF::HashMap<CustomElementDefinition*, OwnPtr<CustomElementBinding> > CustomElementBindingMap;
OwnPtr<CustomElementBindingMap> m_customElementBindings;
« no previous file with comments | « sky/engine/bindings/core/v8/ScriptController.cpp ('k') | sky/engine/bindings/core/v8/V8PerContextData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698