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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp

Issue 2260113002: Lazily install origin trial features on V8 objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase after parent CL landed Created 4 years, 3 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/modules/v8/ModuleBindingsInitializer.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp b/third_party/WebKit/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
index 9c705ca040e7c97ca45d65bf987c8d5a5a4c4443..29791a33b331c65fa3afd3257c976990b33b4547 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/ModuleBindingsInitializer.cpp
@@ -5,8 +5,8 @@
#include "bindings/modules/v8/ModuleBindingsInitializer.h"
#include "bindings/core/v8/V8PerIsolateData.h"
+#include "bindings/modules/v8/ConditionalFeaturesForModules.h"
#include "bindings/modules/v8/SerializedScriptValueForModulesFactory.h"
-#include "bindings/modules/v8/V8BindingForModules.h"
namespace blink {
@@ -16,7 +16,7 @@ void initPartialInterfacesInModules();
void ModuleBindingsInitializer::init()
{
- registerInstallOriginTrialsForModules();
+ registerInstallConditionalFeaturesForModules();
initPartialInterfacesInModules();
SerializedScriptValueFactory::initialize(new SerializedScriptValueForModulesFactory);
}

Powered by Google App Engine
This is Rietveld 408576698