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

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

Issue 2687873005: Remove eventTargetInheritance from WrapperTypeInfo (Closed)
Patch Set: 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/WrapperTypeInfo.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/WrapperTypeInfo.h b/third_party/WebKit/Source/bindings/core/v8/WrapperTypeInfo.h
index bb33cfe2a8a74482349966567d6ddf20ace29f62..80e3bd33ce3fd1cbf50c3aeff3bc9bbf58ff63ac 100644
--- a/third_party/WebKit/Source/bindings/core/v8/WrapperTypeInfo.h
+++ b/third_party/WebKit/Source/bindings/core/v8/WrapperTypeInfo.h
@@ -95,11 +95,6 @@ struct WrapperTypeInfo {
InheritFromActiveScriptWrappable,
};
- enum EventTargetInheritance {
- NotInheritFromEventTarget,
- InheritFromEventTarget,
- };
-
enum Lifetime {
Dependent,
Independent,
@@ -185,7 +180,6 @@ struct WrapperTypeInfo {
const unsigned wrapperClassId : 2; // WrapperClassId
const unsigned
activeScriptWrappableInheritance : 1; // ActiveScriptWrappableInheritance
- const unsigned eventTargetInheritance : 1; // EventTargetInheritance
const unsigned lifetime : 1; // Lifetime
};

Powered by Google App Engine
This is Rietveld 408576698