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

Unified Diff: chrome/browser/history/history_service.cc

Issue 12703036: [Sync] Add interface and backend impl for typed URL syncable service (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: chrome/browser/history/history_service.cc
diff --git a/chrome/browser/history/history_service.cc b/chrome/browser/history/history_service.cc
index e38cbcf1a23af739b70d555a482f616341437e23..9e77c5811a9c0e48a48d830896187cd2171e57e6 100644
--- a/chrome/browser/history/history_service.cc
+++ b/chrome/browser/history/history_service.cc
@@ -362,6 +362,11 @@ bool HistoryService::GetVisitCountForURL(const GURL& url, int* visit_count) {
return true;
}
+history::TypedUrlSyncableService* HistoryService::GetTypedUrlSyncableService()
+ const {
+ return history_backend_->GetTypedUrlSyncableService();
+}
+
void HistoryService::Shutdown() {
DCHECK(thread_checker_.CalledOnValidThread());
// It's possible that bookmarks haven't loaded and history is waiting for

Powered by Google App Engine
This is Rietveld 408576698