Index: chrome/browser/search_engines/template_url_table_model.h |
=================================================================== |
--- chrome/browser/search_engines/template_url_table_model.h (revision 70272) |
+++ chrome/browser/search_engines/template_url_table_model.h (working copy) |
@@ -7,6 +7,7 @@ |
#pragma once |
#include "app/table_model.h" |
+#include "base/compiler_specific.h" |
#include "base/string16.h" |
#include "chrome/browser/search_engines/template_url_model_observer.h" |
@@ -38,13 +39,13 @@ |
void Reload(); |
// TableModel overrides. |
- virtual int RowCount(); |
- virtual std::wstring GetText(int row, int column); |
- virtual SkBitmap GetIcon(int row); |
- virtual void SetObserver(TableModelObserver* observer); |
- virtual bool HasGroups(); |
- virtual Groups GetGroups(); |
- virtual int GetGroupID(int row); |
+ virtual int RowCount() OVERRIDE; |
+ virtual string16 GetText(int row, int column) OVERRIDE; |
+ virtual SkBitmap GetIcon(int row) OVERRIDE; |
+ virtual void SetObserver(TableModelObserver* observer) OVERRIDE; |
+ virtual bool HasGroups() OVERRIDE; |
+ virtual Groups GetGroups() OVERRIDE; |
+ virtual int GetGroupID(int row) OVERRIDE; |
// Removes the entry at the specified index. |
void Remove(int index); |