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

Unified Diff: chrome/browser/possible_url_model.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/possible_url_model.h
===================================================================
--- chrome/browser/possible_url_model.h (revision 70272)
+++ chrome/browser/possible_url_model.h (working copy)
@@ -11,6 +11,7 @@
#include <vector>
#include "app/table_model.h"
+#include "base/compiler_specific.h"
#include "chrome/browser/history/history.h"
class SkBitmap;
@@ -32,25 +33,21 @@
void OnHistoryQueryComplete(HistoryService::Handle h,
history::QueryResults* result);
- virtual int RowCount();
-
const GURL& GetURL(int row);
-
const std::wstring& GetTitle(int row);
- virtual std::wstring GetText(int row, int col_id);
-
- virtual SkBitmap GetIcon(int row);
-
- virtual int CompareValues(int row1, int row2, int column_id);
-
virtual void OnFavIconAvailable(FaviconService::Handle h,
bool fav_icon_available,
scoped_refptr<RefCountedMemory> data,
bool expired,
GURL icon_url);
- virtual void SetObserver(TableModelObserver* observer);
+ // TableModel overrides
+ virtual int RowCount() OVERRIDE;
+ virtual string16 GetText(int row, int col_id) OVERRIDE;
+ virtual SkBitmap GetIcon(int row) OVERRIDE;
+ virtual int CompareValues(int row1, int row2, int column_id) OVERRIDE;
+ virtual void SetObserver(TableModelObserver* observer) OVERRIDE;
private:
// The current profile.

Powered by Google App Engine
This is Rietveld 408576698