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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGResources.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/svg/SVGResources.h
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGResources.h b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
index 03db5835f4e184934c0d33745f746b6c8d29bb34..62a88c683f86ef97c16d96d7965a30184a7fb6b7 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGResources.h
+++ b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
@@ -140,7 +140,7 @@ class SVGResources {
: clipper(nullptr), filter(nullptr), masker(nullptr) {}
static std::unique_ptr<ClipperFilterMaskerData> create() {
- return wrapUnique(new ClipperFilterMaskerData);
+ return WTF::wrapUnique(new ClipperFilterMaskerData);
}
LayoutSVGResourceClipper* clipper;
@@ -158,7 +158,7 @@ class SVGResources {
: markerStart(nullptr), markerMid(nullptr), markerEnd(nullptr) {}
static std::unique_ptr<MarkerData> create() {
- return wrapUnique(new MarkerData);
+ return WTF::wrapUnique(new MarkerData);
}
LayoutSVGResourceMarker* markerStart;
@@ -178,7 +178,7 @@ class SVGResources {
FillStrokeData() : fill(nullptr), stroke(nullptr) {}
static std::unique_ptr<FillStrokeData> create() {
- return wrapUnique(new FillStrokeData);
+ return WTF::wrapUnique(new FillStrokeData);
}
LayoutSVGResourcePaintServer* fill;

Powered by Google App Engine
This is Rietveld 408576698