| 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.
|
|
|