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

Unified Diff: chrome/browser/ui/views/autofill_profiles_view_win.h

Issue 6044007: Remove wstring from TableModel.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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/ui/views/autofill_profiles_view_win.h
===================================================================
--- chrome/browser/ui/views/autofill_profiles_view_win.h (revision 70272)
+++ chrome/browser/ui/views/autofill_profiles_view_win.h (working copy)
@@ -12,6 +12,7 @@
#include "app/combobox_model.h"
#include "app/table_model.h"
+#include "base/compiler_specific.h"
#include "base/string16.h"
#include "chrome/browser/autofill/autofill_dialog.h"
#include "chrome/browser/autofill/autofill_profile.h"
@@ -398,12 +399,12 @@
void UpdateItem(int index);
// TableModel members:
- virtual int RowCount();
- virtual std::wstring GetText(int row, int column_id);
- virtual bool HasGroups() { return true; }
- virtual TableModel::Groups GetGroups();
- virtual int GetGroupID(int row);
- virtual void SetObserver(TableModelObserver* observer);
+ virtual int RowCount() OVERRIDE;
+ virtual string16 GetText(int row, int column_id) OVERRIDE;
+ virtual bool HasGroups() OVERRIDE { return true; }
+ virtual TableModel::Groups GetGroups() OVERRIDE;
+ virtual int GetGroupID(int row) OVERRIDE;
+ virtual void SetObserver(TableModelObserver* observer) OVERRIDE;
private:
std::vector<EditableSetInfo>* profiles_;

Powered by Google App Engine
This is Rietveld 408576698