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

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

Issue 7327007: Moving notification types which are chrome specific to a new header file chrome_notification_type... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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/history_backend_unittest.cc
===================================================================
--- chrome/browser/history/history_backend_unittest.cc (revision 91880)
+++ chrome/browser/history/history_backend_unittest.cc (working copy)
@@ -55,7 +55,7 @@
virtual void NotifyProfileError(sql::InitStatus init_status) OVERRIDE {}
virtual void SetInMemoryBackend(InMemoryHistoryBackend* backend) OVERRIDE;
- virtual void BroadcastNotifications(NotificationType type,
+ virtual void BroadcastNotifications(int type,
HistoryDetails* details) OVERRIDE;
virtual void DBLoaded() OVERRIDE;
virtual void StartTopSitesMigration() OVERRIDE;
@@ -169,7 +169,7 @@
mem_backend_.reset(backend);
}
- void BroadcastNotifications(NotificationType type,
+ void BroadcastNotifications(int type,
HistoryDetails* details) {
// Send the notifications directly to the in-memory database.
Details<HistoryDetails> det(details);
@@ -189,7 +189,7 @@
}
void HistoryBackendTestDelegate::BroadcastNotifications(
- NotificationType type,
+ int type,
HistoryDetails* details) {
test_->BroadcastNotifications(type, details);
}

Powered by Google App Engine
This is Rietveld 408576698