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

Unified Diff: chrome/browser/history/expire_history_backend_unittest.cc

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 months 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/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));

Powered by Google App Engine
This is Rietveld 408576698