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

Unified Diff: third_party/WebKit/Source/core/svg/SVGPathByteStream.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/svg/SVGPathByteStream.h
diff --git a/third_party/WebKit/Source/core/svg/SVGPathByteStream.h b/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
index fcc33b36260f6377e956e455aa11e81a29cbb555..5763ea157cf77207ad5c9239712ff50d93d9e26c 100644
--- a/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
+++ b/third_party/WebKit/Source/core/svg/SVGPathByteStream.h
@@ -38,11 +38,11 @@ class SVGPathByteStream {
public:
static std::unique_ptr<SVGPathByteStream> create() {
- return wrapUnique(new SVGPathByteStream);
+ return WTF::wrapUnique(new SVGPathByteStream);
}
std::unique_ptr<SVGPathByteStream> clone() const {
- return wrapUnique(new SVGPathByteStream(m_data));
+ return WTF::wrapUnique(new SVGPathByteStream(m_data));
}
typedef Vector<unsigned char> Data;

Powered by Google App Engine
This is Rietveld 408576698