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

Unified Diff: chrome/browser/sync/chrome_sync_client.cc

Issue 2723953002: [sync] skeleton implementation of TypedURLSyncBridge (Closed)
Patch Set: rebase Created 3 years, 9 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 | components/browser_sync/profile_sync_components_factory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/chrome_sync_client.cc
diff --git a/chrome/browser/sync/chrome_sync_client.cc b/chrome/browser/sync/chrome_sync_client.cc
index 6669f37510fc8c7d1c91e4172bf2cb86c55ed79a..2670cc4e134483e7da6d37621da72e5cdac14fc2 100644
--- a/chrome/browser/sync/chrome_sync_client.cc
+++ b/chrome/browser/sync/chrome_sync_client.cc
@@ -551,6 +551,10 @@ ChromeSyncClient::GetSyncBridgeForModelType(syncer::ModelType type) {
->GetSyncBridge()
->AsWeakPtr();
#endif // defined(OS_CHROMEOS)
+ case syncer::TYPED_URLS:
+ // TODO(gangwu):implement TypedURLSyncBridge and return real
+ // TypedURLSyncBridge here.
+ return base::WeakPtr<syncer::ModelTypeSyncBridge>();
default:
NOTREACHED();
return WeakPtr<syncer::ModelTypeSyncBridge>();
« no previous file with comments | « no previous file | components/browser_sync/profile_sync_components_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698