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

Unified Diff: components/history/core/browser/history_service.cc

Issue 2723953002: [sync] skeleton implementation of TypedURLSyncBridge (Closed)
Patch Set: rebase and address missing parts for bug 558320 Created 3 years, 10 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/history_service.cc
diff --git a/components/history/core/browser/history_service.cc b/components/history/core/browser/history_service.cc
index b154b3237e19b1373d1c0ba522aefc8229a51861..f930b25329ec23fb7761f45660862b7d5e6aef48 100644
--- a/components/history/core/browser/history_service.cc
+++ b/components/history/core/browser/history_service.cc
@@ -234,6 +234,10 @@ URLDatabase* HistoryService::InMemoryDatabase() {
return in_memory_backend_ ? in_memory_backend_->db() : nullptr;
}
+TypedURLSyncBridge* HistoryService::GetTypedURLSyncBridge() const {
+ return history_backend_->GetTypedURLSyncBridge();
+}
+
TypedUrlSyncableService* HistoryService::GetTypedUrlSyncableService() const {
return history_backend_->GetTypedUrlSyncableService();
}

Powered by Google App Engine
This is Rietveld 408576698