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

Unified Diff: third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.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/layout/shapes/ShapeOutsideInfo.h
diff --git a/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h b/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
index 4e5582d5887e86f727fd8dc9d9e6b2bf137e7304..83cdc16ee48cef7971ce854c534cf7ac0874f063 100644
--- a/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
+++ b/third_party/WebKit/Source/core/layout/shapes/ShapeOutsideInfo.h
@@ -120,7 +120,7 @@ class ShapeOutsideInfo final {
static std::unique_ptr<ShapeOutsideInfo> createInfo(
const LayoutBox& layoutBox) {
- return wrapUnique(new ShapeOutsideInfo(layoutBox));
+ return WTF::wrapUnique(new ShapeOutsideInfo(layoutBox));
}
static bool isEnabledFor(const LayoutBox&);

Powered by Google App Engine
This is Rietveld 408576698