| Index: chrome/browser/history/expire_history_backend_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/history/expire_history_backend_unittest.cc (revision 181040)
|
| +++ chrome/browser/history/expire_history_backend_unittest.cc (working copy)
|
| @@ -127,7 +127,7 @@
|
| NotificationList notifications_;
|
|
|
| private:
|
| - void SetUp() {
|
| + virtual void SetUp() {
|
| ASSERT_TRUE(tmp_dir_.CreateUniqueTempDir());
|
|
|
| FilePath history_name = path().Append(kHistoryFile);
|
| @@ -157,7 +157,7 @@
|
| top_sites_ = profile_.GetTopSites();
|
| }
|
|
|
| - void TearDown() {
|
| + virtual void TearDown() {
|
| top_sites_ = NULL;
|
|
|
| ClearLastNotifications();
|
| @@ -171,8 +171,9 @@
|
| }
|
|
|
| // BroadcastNotificationDelegate implementation.
|
| - void BroadcastNotifications(int type,
|
| - HistoryDetails* details_deleted) {
|
| + virtual void BroadcastNotifications(
|
| + int type,
|
| + HistoryDetails* details_deleted) OVERRIDE {
|
| // This gets called when there are notifications to broadcast. Instead, we
|
| // store them so we can tell that the correct notifications were sent.
|
| notifications_.push_back(std::make_pair(type, details_deleted));
|
|
|