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

Unified Diff: components/autofill/core/browser/autofill_manager_unittest.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: components/autofill/core/browser/autofill_manager_unittest.cc
diff --git a/components/autofill/core/browser/autofill_manager_unittest.cc b/components/autofill/core/browser/autofill_manager_unittest.cc
index a33eeff77e70276e53f94e67df6a51e46de03ad1..c0cafff79f67032a8bf29313729b0e363d69782b 100644
--- a/components/autofill/core/browser/autofill_manager_unittest.cc
+++ b/components/autofill/core/browser/autofill_manager_unittest.cc
@@ -52,9 +52,11 @@
#include "ui/gfx/rect.h"
#include "url/gurl.h"
+using base::ASCIIToUTF16;
+using base::UTF8ToUTF16;
using content::WebContents;
-using testing::_;
using blink::WebFormElement;
+using testing::_;
namespace autofill {
@@ -441,7 +443,7 @@ class TestAutofillManager : public AutofillManager {
SCOPED_TRACE(
base::StringPrintf(
"Field %d with value %s", static_cast<int>(i),
- UTF16ToUTF8(submitted_form->field(i)->value).c_str()));
+ base::UTF16ToUTF8(submitted_form->field(i)->value).c_str()));
const ServerFieldTypeSet& possible_types =
submitted_form->field(i)->possible_types();
EXPECT_EQ(expected_submitted_field_types_[i].size(),

Powered by Google App Engine
This is Rietveld 408576698