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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8Binding.h

Issue 2692753003: [Bindings] Update runtime enabled features from partial interfaces (Closed)
Patch Set: Remove needless classname addition Created 3 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: third_party/WebKit/Source/bindings/core/v8/V8Binding.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
index 8df4565ec2c0e61384ba263ed524172a55e7dba3..7ec21d6c0f20995b137d1b40aeab084ea306a9c4 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8Binding.h
@@ -1078,9 +1078,15 @@ class V8IsolateInterruptor final : public BlinkGCInterruptor {
};
typedef void (*InstallTemplateFunction)(
- v8::Isolate*,
- const DOMWrapperWorld&,
+ v8::Isolate* isolate,
+ const DOMWrapperWorld& world,
v8::Local<v8::FunctionTemplate> interfaceTemplate);
+typedef void (*InstallRuntimeEnabledFunction)(
Yuki 2017/02/13 12:15:03 nit: We don't need to expose this type to anything
+ v8::Isolate* isolate,
+ const DOMWrapperWorld& world,
+ v8::Local<v8::Object> instance,
+ v8::Local<v8::Object> prototype,
+ v8::Local<v8::Function> interface);
// Freeze a V8 object. The type of the first parameter and the return value is
// intentionally v8::Value so that this function can wrap ToV8().

Powered by Google App Engine
This is Rietveld 408576698