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

Unified Diff: chrome/browser/custom_home_pages_table_model.h

Issue 105193002: Replace string16 with base::string16. (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: chrome/browser/custom_home_pages_table_model.h
diff --git a/chrome/browser/custom_home_pages_table_model.h b/chrome/browser/custom_home_pages_table_model.h
index cad3a411f4ded77a465afe30e2a6dc08461bffeb..64a8b82362d0de30d5e4f5f9a21a36b808a79bab 100644
--- a/chrome/browser/custom_home_pages_table_model.h
+++ b/chrome/browser/custom_home_pages_table_model.h
@@ -50,8 +50,8 @@ class CustomHomePagesTableModel : public ui::TableModel {
// TableModel overrides:
virtual int RowCount() OVERRIDE;
- virtual string16 GetText(int row, int column_id) OVERRIDE;
- virtual string16 GetTooltip(int row) OVERRIDE;
+ virtual base::string16 GetText(int row, int column_id) OVERRIDE;
+ virtual base::string16 GetTooltip(int row) OVERRIDE;
virtual void SetObserver(ui::TableModelObserver* observer) OVERRIDE;
private:
@@ -76,7 +76,7 @@ class CustomHomePagesTableModel : public ui::TableModel {
int* entry_index);
// Returns the URL for a particular row, formatted for display to the user.
- string16 FormattedURL(int row) const;
+ base::string16 FormattedURL(int row) const;
// Set of entries we're showing.
std::vector<Entry> entries_;

Powered by Google App Engine
This is Rietveld 408576698