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

Unified Diff: components/autofill/browser/autofill_popup_delegate.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/autofill_popup_delegate.h
diff --git a/components/autofill/browser/autofill_popup_delegate.h b/components/autofill/browser/autofill_popup_delegate.h
index ad1c9906b6d0db89cfc0f5c81a6048798e3f2ab4..595a0e039539dd1a9acad7eac66a2539631bddc0 100644
--- a/components/autofill/browser/autofill_popup_delegate.h
+++ b/components/autofill/browser/autofill_popup_delegate.h
@@ -28,10 +28,12 @@ class AutofillPopupDelegate {
virtual void DidSelectSuggestion(int identifier) = 0;
// Inform the delegate that a row in the popup has been chosen.
- virtual void DidAcceptSuggestion(const string16& value, int identifier) = 0;
+ virtual void DidAcceptSuggestion(const base::string16& value,
+ int identifier) = 0;
// Delete the described suggestion.
- virtual void RemoveSuggestion(const string16& value, int identifier) = 0;
+ virtual void RemoveSuggestion(const base::string16& value,
+ int identifier) = 0;
// Informs the delegate that the Autofill previewed form should be cleared.
virtual void ClearPreviewedForm() = 0;

Powered by Google App Engine
This is Rietveld 408576698