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

Unified Diff: chrome/browser/history/android/android_provider_backend.cc

Issue 10071015: Fix android unit_test compilation errors introduced by https://chromiumcodereview.appspot.com/98520… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/history/android/android_provider_backend_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/android/android_provider_backend.cc
diff --git a/chrome/browser/history/android/android_provider_backend.cc b/chrome/browser/history/android/android_provider_backend.cc
index ee427dff89cd207d2a99b45d571135ce0d609a07..3a06a7abe2d20808ecc9917589dd10f46adfaa19 100644
--- a/chrome/browser/history/android/android_provider_backend.cc
+++ b/chrome/browser/history/android/android_provider_backend.cc
@@ -316,7 +316,7 @@ bool AndroidProviderBackend::UpdateHistoryAndBookmarks(
if (!modified->changed_urls.empty())
notifications->push_back(HistoryNotification(
- chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED, modified.release()));
+ chrome::NOTIFICATION_HISTORY_URLS_MODIFIED, modified.release()));
if (!favicon->urls.empty())
notifications->push_back(HistoryNotification(
@@ -362,7 +362,7 @@ AndroidURLID AndroidProviderBackend::InsertHistoryAndBookmark(
}
notifications->push_back(HistoryNotification(
- chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED, modified.release()));
+ chrome::NOTIFICATION_HISTORY_URLS_MODIFIED, modified.release()));
if (favicon.get())
notifications->push_back(HistoryNotification(
chrome::NOTIFICATION_FAVICON_CHANGED, favicon.release()));
@@ -437,7 +437,7 @@ bool AndroidProviderBackend::DeleteHistory(
modified->changed_urls.push_back(row);
}
notifications->push_back(HistoryNotification(
- chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED, modified.release()));
+ chrome::NOTIFICATION_HISTORY_URLS_MODIFIED, modified.release()));
return true;
}
@@ -977,7 +977,7 @@ bool AndroidProviderBackend::SimulateUpdateURL(
notifications->push_back(HistoryNotification(
chrome::NOTIFICATION_FAVICON_CHANGED, favicon_details.release()));
notifications->push_back(HistoryNotification(
- chrome::NOTIFICATION_HISTORY_TYPED_URLS_MODIFIED, modified.release()));
+ chrome::NOTIFICATION_HISTORY_URLS_MODIFIED, modified.release()));
return true;
}
« no previous file with comments | « no previous file | chrome/browser/history/android/android_provider_backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698