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

Unified Diff: third_party/WebKit/Source/core/style/CounterDirectives.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/core/style/CounterDirectives.cpp
diff --git a/third_party/WebKit/Source/core/style/CounterDirectives.cpp b/third_party/WebKit/Source/core/style/CounterDirectives.cpp
index 518e89fe97f47b2b9d253cc99dfb15bc7e0fdc8a..a96c4dea99445fd68854c3e4429380d86b0e8b79 100644
--- a/third_party/WebKit/Source/core/style/CounterDirectives.cpp
+++ b/third_party/WebKit/Source/core/style/CounterDirectives.cpp
@@ -35,7 +35,7 @@ bool operator==(const CounterDirectives& a, const CounterDirectives& b) {
std::unique_ptr<CounterDirectiveMap> clone(
const CounterDirectiveMap& counterDirectives) {
std::unique_ptr<CounterDirectiveMap> result =
- wrapUnique(new CounterDirectiveMap);
+ WTF::wrapUnique(new CounterDirectiveMap);
*result = counterDirectives;
return result;
}
« no previous file with comments | « third_party/WebKit/Source/core/style/ContentData.h ('k') | third_party/WebKit/Source/core/style/DataPersistent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698