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

Unified Diff: components/autofill/browser/password_autofill_manager.cc

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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/browser/password_autofill_manager.cc
diff --git a/components/autofill/browser/password_autofill_manager.cc b/components/autofill/browser/password_autofill_manager.cc
index 6a641f6092b368f03e45ca2317f71220c536ab52..a17168f3c1760fa697277ca9b17c71ef93c5e610 100644
--- a/components/autofill/browser/password_autofill_manager.cc
+++ b/components/autofill/browser/password_autofill_manager.cc
@@ -20,7 +20,7 @@ PasswordAutofillManager::~PasswordAutofillManager() {
bool PasswordAutofillManager::DidAcceptAutofillSuggestion(
const FormFieldData& field,
- const string16& value) {
+ const base::string16& value) {
PasswordFormFillData password;
if (!FindLoginInfo(field, &password))
return false;
@@ -53,7 +53,7 @@ void PasswordAutofillManager::Reset() {
// PasswordAutofillManager, private:
bool PasswordAutofillManager::WillFillUserNameAndPassword(
- const string16& current_username,
+ const base::string16& current_username,
const PasswordFormFillData& fill_data) {
// Look for any suitable matches to current field text.
if (fill_data.basic_data.fields[0].value == current_username) {

Powered by Google App Engine
This is Rietveld 408576698