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

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

Issue 1198373002: Split HistoryClient in two objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1192403002
Patch Set: Add comments in ChromeHistoryBackendClient Created 5 years, 6 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.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.h
diff --git a/chrome/browser/history/android/android_provider_backend.h b/chrome/browser/history/android/android_provider_backend.h
index f1a36bac46cf49ad7c4a96e8c7ce2c979c208dc9..03994a8013d5c02a3b4615b10523c5479b7061ef 100644
--- a/chrome/browser/history/android/android_provider_backend.h
+++ b/chrome/browser/history/android/android_provider_backend.h
@@ -24,8 +24,8 @@ namespace history {
class AndroidProviderBackend;
class AndroidURLsSQLHandler;
class HistoryBackend;
+class HistoryBackendClient;
class HistoryBackendNotifier;
-class HistoryClient;
class HistoryDatabase;
class ThumbnailDatabase;
@@ -48,7 +48,7 @@ class AndroidProviderBackend : public base::SupportsUserData::Data {
AndroidProviderBackend(const base::FilePath& cache_db_name,
HistoryDatabase* history_db,
ThumbnailDatabase* thumbnail_db,
- HistoryClient* history_client,
+ HistoryBackendClient* backend_client,
HistoryBackendNotifier* notifier);
~AndroidProviderBackend() override;
@@ -339,7 +339,7 @@ class AndroidProviderBackend : public base::SupportsUserData::Data {
ThumbnailDatabase* thumbnail_db_;
- HistoryClient* history_client_;
+ HistoryBackendClient* backend_client_;
// Whether AndroidProviderBackend has been initialized.
bool initialized_;
« no previous file with comments | « no previous file | chrome/browser/history/android/android_provider_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698