| Index: chrome/browser/history/expire_history_backend_unittest.cc
|
| ===================================================================
|
| --- chrome/browser/history/expire_history_backend_unittest.cc (revision 91771)
|
| +++ chrome/browser/history/expire_history_backend_unittest.cc (working copy)
|
| @@ -22,6 +22,7 @@
|
| #include "chrome/browser/history/text_database_manager.h"
|
| #include "chrome/browser/history/thumbnail_database.h"
|
| #include "chrome/browser/history/top_sites.h"
|
| +#include "chrome/common/chrome_notification_types.h"
|
| #include "chrome/common/thumbnail_score.h"
|
| #include "chrome/test/testing_profile.h"
|
| #include "chrome/tools/profiles/thumbnail-inl.h"
|
| @@ -376,7 +377,7 @@
|
|
|
| bool found_delete_notification = false;
|
| for (size_t i = 0; i < notifications_.size(); i++) {
|
| - if (notifications_[i].first == NotificationType::HISTORY_URLS_DELETED) {
|
| + if (notifications_[i].first == chrome::HISTORY_URLS_DELETED) {
|
| const URLsDeletedDetails* deleted_details =
|
| reinterpret_cast<URLsDeletedDetails*>(notifications_[i].second);
|
| if (deleted_details->urls.find(row.url()) !=
|
| @@ -384,9 +385,9 @@
|
| found_delete_notification = true;
|
| }
|
| } else {
|
| - EXPECT_NE(notifications_[i].first, NotificationType::HISTORY_URL_VISITED);
|
| + EXPECT_NE(notifications_[i].first, chrome::HISTORY_URL_VISITED);
|
| EXPECT_NE(notifications_[i].first,
|
| - NotificationType::HISTORY_TYPED_URLS_MODIFIED);
|
| + chrome::HISTORY_TYPED_URLS_MODIFIED);
|
| }
|
| }
|
| EXPECT_TRUE(found_delete_notification);
|
|
|