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

Unified Diff: third_party/WebKit/Source/modules/ModulesInitializer.cpp

Issue 2780693003: [wasm] response-based compile APIs (Closed)
Patch Set: no specific OWNERS for now 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
Index: third_party/WebKit/Source/modules/ModulesInitializer.cpp
diff --git a/third_party/WebKit/Source/modules/ModulesInitializer.cpp b/third_party/WebKit/Source/modules/ModulesInitializer.cpp
index 05567be42fef8daa534100dfc63b021aa72f09c0..dd6018861f6c473600cc535fea17f5a102464c78 100644
--- a/third_party/WebKit/Source/modules/ModulesInitializer.cpp
+++ b/third_party/WebKit/Source/modules/ModulesInitializer.cpp
@@ -25,6 +25,7 @@
#include "modules/installation/InstallationServiceImpl.h"
#include "modules/offscreencanvas2d/OffscreenCanvasRenderingContext2D.h"
#include "modules/time_zone_monitor/TimeZoneMonitorClient.h"
+#include "modules/wasm/WasmResponseExtensions.h"
#include "modules/webdatabase/DatabaseManager.h"
#include "modules/webgl/WebGL2RenderingContext.h"
#include "modules/webgl/WebGLRenderingContext.h"
@@ -61,6 +62,8 @@ void ModulesInitializer::initialize() {
CoreInitializer::initialize();
+ WasmResponseExtensions::initialize(V8PerIsolateData::mainThreadIsolate());
haraken 2017/04/07 04:47:46 Would you move this call to V8Initializer?
Mircea Trofin 2017/04/07 06:11:16 I think that's not allowed, layering-wise, see Sou
+
// Canvas context types must be registered with the HTMLCanvasElement.
HTMLCanvasElement::registerRenderingContextFactory(
WTF::makeUnique<CanvasRenderingContext2D::Factory>());

Powered by Google App Engine
This is Rietveld 408576698