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

Unified Diff: third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.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/platform/graphics/gpu/Extensions3DUtil.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp b/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
index 51f032e281b4632911f471c584ae1c0bc0593e19..a883ec84206faa2416e07d0efa41feee983db5e8 100644
--- a/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
+++ b/third_party/WebKit/Source/platform/graphics/gpu/Extensions3DUtil.cpp
@@ -25,7 +25,8 @@ void splitStringHelper(const String& str, HashSet<String>& set) {
std::unique_ptr<Extensions3DUtil> Extensions3DUtil::create(
gpu::gles2::GLES2Interface* gl) {
- std::unique_ptr<Extensions3DUtil> out = wrapUnique(new Extensions3DUtil(gl));
+ std::unique_ptr<Extensions3DUtil> out =
+ WTF::wrapUnique(new Extensions3DUtil(gl));
out->initializeExtensions();
return out;
}

Powered by Google App Engine
This is Rietveld 408576698