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

Unified Diff: third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h

Issue 2837923003: Make NodeFilter a legacy callback interface. (Closed)
Patch Set: templates.gni, etc. Created 3 years, 8 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 | « third_party/WebKit/Source/platform/bindings/V8PerContextData.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h
diff --git a/third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h b/third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h
index 799d8e8dfd4398ded42a9378135a43d7ef962e50..aaa922c348ad8e3aed61dd8d893f3f090d034fd8 100644
--- a/third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h
+++ b/third_party/WebKit/Source/platform/bindings/WrapperTypeInfo.h
@@ -83,6 +83,7 @@ struct WrapperTypeInfo {
enum WrapperTypePrototype {
kWrapperTypeObjectPrototype,
kWrapperTypeExceptionPrototype,
+ kWrapperTypeNoPrototype, // For legacy callback interface
};
enum WrapperClassId {
@@ -179,7 +180,7 @@ struct WrapperTypeInfo {
prepare_prototype_and_interface_object_function;
const char* const interface_name;
const WrapperTypeInfo* parent_class;
- const unsigned wrapper_type_prototype : 1; // WrapperTypePrototype
+ const unsigned wrapper_type_prototype : 2; // WrapperTypePrototype
const unsigned wrapper_class_id : 2; // WrapperClassId
const unsigned // ActiveScriptWrappableInheritance
active_script_wrappable_inheritance : 1;
« no previous file with comments | « third_party/WebKit/Source/platform/bindings/V8PerContextData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698