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

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

Issue 78713009: Introduce toV8NoInline (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Do not generate toV8Inline if CustomToV8 is specified. Created 7 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: Source/bindings/v8/V8Binding.h
diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
index 76250156a929c0716e6ee940f1b6fe4e139031cd..d83cfbb79c69a25197d6f779af7f06bee47f2f16 100644
--- a/Source/bindings/v8/V8Binding.h
+++ b/Source/bindings/v8/V8Binding.h
@@ -725,6 +725,11 @@ namespace WebCore {
// Can only be called by blink::initialize
void setMainThreadIsolate(v8::Isolate*);
+
+ // Converts a DOM object to a v8 value.
+ // Each specialized implementation will be generated.
haraken 2013/11/23 15:03:18 Would you add more comment about what this method
yhirano 2013/11/25 01:50:52 Done.
+ template<typename T>
+ v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*);
} // namespace WebCore
#endif // V8Binding_h

Powered by Google App Engine
This is Rietveld 408576698