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

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

Issue 285233012: Abstract history dependencies on bookmarks through HistoryClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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/android/android_provider_backend.h
diff --git a/chrome/browser/history/android/android_provider_backend.h b/chrome/browser/history/android/android_provider_backend.h
index 38c22d8dbce619837d888a788843540e5ead5552..02dff9b707de43b5e5710343c0f4b2862a5285db 100644
--- a/chrome/browser/history/android/android_provider_backend.h
+++ b/chrome/browser/history/android/android_provider_backend.h
@@ -21,12 +21,11 @@
#include "sql/statement.h"
#include "sql/transaction.h"
-class BookmarkService;
-
namespace history {
class AndroidProviderBackend;
class AndroidURLsSQLHandler;
+class HistoryClient;
class HistoryDatabase;
class ThumbnailDatabase;
@@ -49,7 +48,7 @@ class AndroidProviderBackend {
AndroidProviderBackend(const base::FilePath& cache_db_name,
HistoryDatabase* history_db,
ThumbnailDatabase* thumbnail_db,
- BookmarkService* bookmark_service,
+ HistoryClient* history_client_,
HistoryBackend::Delegate* delegate);
~AndroidProviderBackend();
@@ -351,7 +350,7 @@ class AndroidProviderBackend {
ThumbnailDatabase* thumbnail_db_;
- BookmarkService* bookmark_service_;
+ HistoryClient* history_client_;
// Whether AndroidProviderBackend has been initialized.
bool initialized_;

Powered by Google App Engine
This is Rietveld 408576698