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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutCounter.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/layout/LayoutCounter.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutCounter.cpp b/third_party/WebKit/Source/core/layout/LayoutCounter.cpp
index 8a74e0c7a1e6f3b42a2a25a2e6b84d0a24bd5198..c3319605ab99b2a97965b030383abd932e233d5a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutCounter.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutCounter.cpp
@@ -392,7 +392,7 @@ static CounterNode* makeCounterNodeIfNeeded(LayoutObject& object,
nodeMap = counterMaps().get(&object);
} else {
nodeMap = new CounterMap;
- counterMaps().set(&object, wrapUnique(nodeMap));
+ counterMaps().set(&object, WTF::wrapUnique(nodeMap));
object.setHasCounterNodeMap(true);
}
nodeMap->set(identifier, newNode);
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBoxModelObject.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutGrid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698