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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContextState.h

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/GraphicsContextState.h
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
index 2f49b7a398cb715f29ffb633392f60edd2df540c..d203d1fea27873af91f92575fd87c8d6b60e2fca 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.h
@@ -49,12 +49,12 @@ class PLATFORM_EXPORT GraphicsContextState final {
public:
static std::unique_ptr<GraphicsContextState> create() {
- return wrapUnique(new GraphicsContextState());
+ return WTF::wrapUnique(new GraphicsContextState());
}
static std::unique_ptr<GraphicsContextState> createAndCopy(
const GraphicsContextState& other) {
- return wrapUnique(new GraphicsContextState(other));
+ return WTF::wrapUnique(new GraphicsContextState(other));
}
void copy(const GraphicsContextState&);

Powered by Google App Engine
This is Rietveld 408576698