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

Unified Diff: third_party/WebKit/Source/core/style/StyleNonInheritedVariables.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/style/StyleNonInheritedVariables.h
diff --git a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
index 81526d7aa89352a8215027d269610d15764cbee6..c7cec75af7e5382211111e966c24b0fc19105126 100644
--- a/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
+++ b/third_party/WebKit/Source/core/style/StyleNonInheritedVariables.h
@@ -16,11 +16,11 @@ namespace blink {
class StyleNonInheritedVariables {
public:
static std::unique_ptr<StyleNonInheritedVariables> create() {
- return wrapUnique(new StyleNonInheritedVariables);
+ return WTF::wrapUnique(new StyleNonInheritedVariables);
}
std::unique_ptr<StyleNonInheritedVariables> copy() {
- return wrapUnique(new StyleNonInheritedVariables(*this));
+ return WTF::wrapUnique(new StyleNonInheritedVariables(*this));
}
bool operator==(const StyleNonInheritedVariables& other) const;
« no previous file with comments | « third_party/WebKit/Source/core/style/DataPersistent.h ('k') | third_party/WebKit/Source/core/style/StylePath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698