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

Unified Diff: Source/bindings/tests/results/V8TestConditionalInterface.cpp

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/tests/results/V8TestConditionalInterface.cpp
diff --git a/Source/bindings/tests/results/V8TestConditionalInterface.cpp b/Source/bindings/tests/results/V8TestConditionalInterface.cpp
index 5af8cf2d7a3580ff1644dcd7456759b30efb56b2..94631268d01364a59b4186a310fe43c7b97575f0 100644
--- a/Source/bindings/tests/results/V8TestConditionalInterface.cpp
+++ b/Source/bindings/tests/results/V8TestConditionalInterface.cpp
@@ -147,5 +147,11 @@ void V8TestConditionalInterface::derefObject(void* object)
fromInternalPointer(object)->deref();
}
+template<>
+v8::Handle<v8::Value> toV8NoInline(TestConditionalInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
+{
+ return toV8(impl, creationContext, isolate);
+}
+
} // namespace WebCore
#endif // ENABLE(CONDITION)

Powered by Google App Engine
This is Rietveld 408576698