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

Unified Diff: components/history/core/browser/thumbnail_database.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
Index: components/history/core/browser/thumbnail_database.h
diff --git a/components/history/core/browser/thumbnail_database.h b/components/history/core/browser/thumbnail_database.h
index 4253cb25e0afea14a48b214d66d7709acde2c6dc..7e7eef1cefff8dffc0cee9e5dc4797e1b40c6d1c 100644
--- a/components/history/core/browser/thumbnail_database.h
+++ b/components/history/core/browser/thumbnail_database.h
@@ -23,7 +23,7 @@ class Time;
namespace history {
-class HistoryClient;
+class HistoryBackendClient;
// This database interface is owned by the history backend and runs on the
// history thread. It is a totally separate component from history partially
@@ -34,7 +34,7 @@ class HistoryClient;
// higher priority history operations.
class ThumbnailDatabase {
public:
- explicit ThumbnailDatabase(HistoryClient* history_client);
+ explicit ThumbnailDatabase(HistoryBackendClient* backend_client);
~ThumbnailDatabase();
// Must be called after creation but before any other methods are called.
@@ -272,7 +272,7 @@ class ThumbnailDatabase {
sql::Connection db_;
sql::MetaTable meta_table_;
- HistoryClient* history_client_;
+ HistoryBackendClient* backend_client_;
};
} // namespace history
« no previous file with comments | « components/history/core/browser/history_service.cc ('k') | components/history/core/browser/thumbnail_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698