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

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

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed http/tests/serviceworker/fetch\* regression Created 6 years, 2 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: Source/bindings/core/v8/WrapperTypeInfo.h
diff --git a/Source/bindings/core/v8/WrapperTypeInfo.h b/Source/bindings/core/v8/WrapperTypeInfo.h
index 469a9bbf9981de100db736a0968a6afcba9846dc..643f14301c05a47fb6a0717184b2c7dd74073421 100644
--- a/Source/bindings/core/v8/WrapperTypeInfo.h
+++ b/Source/bindings/core/v8/WrapperTypeInfo.h
@@ -177,15 +177,15 @@ struct WrapperTypeInfo {
// This field must be the first member of the struct WrapperTypeInfo. This is also checked by a COMPILE_ASSERT() below.
const gin::GinEmbedder ginEmbedder;
- const DomTemplateFunction domTemplateFunction;
+ DomTemplateFunction domTemplateFunction;
const RefObjectFunction refObjectFunction;
const DerefObjectFunction derefObjectFunction;
const CreatePersistentHandleFunction createPersistentHandleFunction;
const ToActiveDOMObjectFunction toActiveDOMObjectFunction;
const ToEventTargetFunction toEventTargetFunction;
const ResolveWrapperReachabilityFunction visitDOMWrapperFunction;
- const InstallConditionallyEnabledMethodsFunction installConditionallyEnabledMethodsFunction;
- const InstallConditionallyEnabledPropertiesFunction installConditionallyEnabledPropertiesFunction;
+ InstallConditionallyEnabledMethodsFunction installConditionallyEnabledMethodsFunction;
+ InstallConditionallyEnabledPropertiesFunction installConditionallyEnabledPropertiesFunction;
const WrapperTypeInfo* parentClass;
const WrapperTypePrototype wrapperTypePrototype;
const WrapperClassId wrapperClassId;

Powered by Google App Engine
This is Rietveld 408576698