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

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

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.h
diff --git a/components/autofill/browser/password_autofill_manager.h b/components/autofill/browser/password_autofill_manager.h
index 3d16054fcbf9ba6a426fd9c396f7a84118a881bb..e1d7b5a080b31711bbd6b8b484c3ada2681e412a 100644
--- a/components/autofill/browser/password_autofill_manager.h
+++ b/components/autofill/browser/password_autofill_manager.h
@@ -29,7 +29,7 @@ class PasswordAutofillManager {
// Fills the password associated with user name |value|. Returns true if the
// username and password fields were filled, false otherwise.
bool DidAcceptAutofillSuggestion(const FormFieldData& field,
- const string16& value);
+ const base::string16& value);
// Invoked when a password mapping is added.
void AddPasswordFormMapping(
@@ -50,7 +50,7 @@ class PasswordAutofillManager {
// Returns true if |current_username| matches a username for one of the
// login mappings in |password|.
bool WillFillUserNameAndPassword(
- const string16& current_username,
+ const base::string16& current_username,
const PasswordFormFillData& password);
// Finds login information for a |node| that was previously filled.

Powered by Google App Engine
This is Rietveld 408576698