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

Unified Diff: third_party/WebKit/Source/platform/graphics/ImageDecodingStore.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/ImageDecodingStore.h
diff --git a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h
index 39e890ef18b53fd2f0f94bbcab326a3a34c96b01..fadf40f878dda3658e4242618a976ea09cee49c5 100644
--- a/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h
+++ b/third_party/WebKit/Source/platform/graphics/ImageDecodingStore.h
@@ -67,7 +67,7 @@ class PLATFORM_EXPORT ImageDecodingStore final {
public:
static std::unique_ptr<ImageDecodingStore> create() {
- return wrapUnique(new ImageDecodingStore);
+ return WTF::wrapUnique(new ImageDecodingStore);
}
~ImageDecodingStore();
@@ -141,7 +141,7 @@ class PLATFORM_EXPORT ImageDecodingStore final {
static std::unique_ptr<DecoderCacheEntry> create(
const ImageFrameGenerator* generator,
std::unique_ptr<ImageDecoder> decoder) {
- return wrapUnique(
+ return WTF::wrapUnique(
new DecoderCacheEntry(generator, 0, std::move(decoder)));
}

Powered by Google App Engine
This is Rietveld 408576698