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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.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/core/html/parser/HTMLPreloadScanner.h
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
index d5a9d0075ebb663a8f244b2a54ab0d13527f73ac..8433cb9a4e81c5490c7d1ead5b86c4cc9231d049 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
+++ b/third_party/WebKit/Source/core/html/parser/HTMLPreloadScanner.h
@@ -58,11 +58,11 @@ struct CORE_EXPORT CachedDocumentParameters {
public:
static std::unique_ptr<CachedDocumentParameters> create(Document* document) {
- return wrapUnique(new CachedDocumentParameters(document));
+ return WTF::wrapUnique(new CachedDocumentParameters(document));
}
static std::unique_ptr<CachedDocumentParameters> create() {
- return wrapUnique(new CachedDocumentParameters);
+ return WTF::wrapUnique(new CachedDocumentParameters);
}
bool doHtmlPreloadScanning;
@@ -178,9 +178,9 @@ class CORE_EXPORT HTMLPreloadScanner {
const KURL& documentURL,
std::unique_ptr<CachedDocumentParameters> documentParameters,
const MediaValuesCached::MediaValuesCachedData& mediaValuesCachedData) {
- return wrapUnique(new HTMLPreloadScanner(options, documentURL,
- std::move(documentParameters),
- mediaValuesCachedData));
+ return WTF::wrapUnique(new HTMLPreloadScanner(options, documentURL,
+ std::move(documentParameters),
+ mediaValuesCachedData));
}
~HTMLPreloadScanner();

Powered by Google App Engine
This is Rietveld 408576698