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

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

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years 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 8c8d32d91f5d76d004e46a4c05c8498d4a601d25..2108c94ae9c66a7e3d5d3f01dad2682c41d8e627 100644
--- a/third_party/WebKit/Source/modules/ModulesInitializer.cpp
+++ b/third_party/WebKit/Source/modules/ModulesInitializer.cpp
@@ -59,21 +59,21 @@ void ModulesInitializer::initialize() {
// Canvas context types must be registered with the HTMLCanvasElement.
HTMLCanvasElement::registerRenderingContextFactory(
- makeUnique<CanvasRenderingContext2D::Factory>());
+ WTF::makeUnique<CanvasRenderingContext2D::Factory>());
HTMLCanvasElement::registerRenderingContextFactory(
- makeUnique<WebGLRenderingContext::Factory>());
+ WTF::makeUnique<WebGLRenderingContext::Factory>());
HTMLCanvasElement::registerRenderingContextFactory(
- makeUnique<WebGL2RenderingContext::Factory>());
+ WTF::makeUnique<WebGL2RenderingContext::Factory>());
HTMLCanvasElement::registerRenderingContextFactory(
- makeUnique<ImageBitmapRenderingContext::Factory>());
+ WTF::makeUnique<ImageBitmapRenderingContext::Factory>());
// OffscreenCanvas context types must be registered with the OffscreenCanvas.
OffscreenCanvas::registerRenderingContextFactory(
- makeUnique<OffscreenCanvasRenderingContext2D::Factory>());
+ WTF::makeUnique<OffscreenCanvasRenderingContext2D::Factory>());
OffscreenCanvas::registerRenderingContextFactory(
- makeUnique<WebGLRenderingContext::Factory>());
+ WTF::makeUnique<WebGLRenderingContext::Factory>());
OffscreenCanvas::registerRenderingContextFactory(
- makeUnique<WebGL2RenderingContext::Factory>());
+ WTF::makeUnique<WebGL2RenderingContext::Factory>());
ASSERT(isInitialized());
}

Powered by Google App Engine
This is Rietveld 408576698