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

Unified Diff: chrome/browser/notifications/notification_exceptions_table_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/notifications/notification_exceptions_table_model.h
===================================================================
--- chrome/browser/notifications/notification_exceptions_table_model.h (revision 70272)
+++ chrome/browser/notifications/notification_exceptions_table_model.h (working copy)
@@ -9,6 +9,7 @@
#include <string>
viettrungluu 2010/12/29 23:41:17 I don't think it's needed. (I don't think you nee
Avi (use Gerrit) 2010/12/30 00:04:15 Done.
#include <vector>
+#include "base/compiler_specific.h"
#include "chrome/browser/notifications/desktop_notification_service.h"
#include "chrome/browser/remove_rows_table_model.h"
#include "chrome/common/notification_observer.h"
@@ -26,9 +27,9 @@
virtual void RemoveAll();
// Overridden from TableModel:
- virtual int RowCount();
- virtual std::wstring GetText(int row, int column_id);
- virtual void SetObserver(TableModelObserver* observer);
+ virtual int RowCount() OVERRIDE;
+ virtual string16 GetText(int row, int column_id) OVERRIDE;
+ virtual void SetObserver(TableModelObserver* observer) OVERRIDE;
// Overridden from NotificationObserver:
virtual void Observe(NotificationType type,

Powered by Google App Engine
This is Rietveld 408576698