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

Unified Diff: third_party/WebKit/Source/core/html/forms/InputType.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/html/forms/InputType.cpp
diff --git a/third_party/WebKit/Source/core/html/forms/InputType.cpp b/third_party/WebKit/Source/core/html/forms/InputType.cpp
index f46d901db90a41c5fbf30248e5702df71cfd9a98..03390f5abb701e42c2b9603b5ec99020912a9556 100644
--- a/third_party/WebKit/Source/core/html/forms/InputType.cpp
+++ b/third_party/WebKit/Source/core/html/forms/InputType.cpp
@@ -86,7 +86,7 @@ using InputTypeFactoryMap =
static std::unique_ptr<InputTypeFactoryMap> createInputTypeFactoryMap() {
std::unique_ptr<InputTypeFactoryMap> map =
- wrapUnique(new InputTypeFactoryMap);
+ WTF::wrapUnique(new InputTypeFactoryMap);
map->add(InputTypeNames::button, ButtonInputType::create);
map->add(InputTypeNames::checkbox, CheckboxInputType::create);
map->add(InputTypeNames::color, ColorInputType::create);

Powered by Google App Engine
This is Rietveld 408576698