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

Unified Diff: chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.cc

Issue 539173004: Bring up of the enhanced bookmarks cluster service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@intermediary2
Patch Set: Removing empty DEPS file, fixing a nit. Created 6 years, 3 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/enhanced_bookmarks/chrome_bookmark_server_cluster_service.cc
diff --git a/chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.cc b/chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7933004680601c61f99540bbef2f1ba212d5545c
--- /dev/null
+++ b/chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.cc
@@ -0,0 +1,44 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.h"
+
+#include "chrome/browser/sync/profile_sync_service.h"
+#include "components/bookmarks/browser/bookmark_model.h"
+
+namespace enhanced_bookmarks {
+
+ChromeBookmarkServerClusterService::ChromeBookmarkServerClusterService(
+ const std::string& application_language_code,
+ scoped_refptr<net::URLRequestContextGetter> request_context_getter,
+ ProfileOAuth2TokenService* token_service,
+ SigninManagerBase* signin_manager,
+ BookmarkModel* bookmark_model,
+ PrefService* pref_service,
+ ProfileSyncService* sync_service)
+ : BookmarkServerClusterService(application_language_code,
+ request_context_getter,
+ token_service,
+ signin_manager,
+ bookmark_model,
+ pref_service),
+ sync_service_(sync_service) {
+ if (sync_service_)
+ sync_service_->AddObserver(this);
+}
+
+ChromeBookmarkServerClusterService::~ChromeBookmarkServerClusterService() {
+ if (sync_service_)
+ sync_service_->RemoveObserver(this);
+}
+
+void ChromeBookmarkServerClusterService::OnStateChanged() {
+ // Do nothing.
+}
+
+void ChromeBookmarkServerClusterService::OnSyncCycleCompleted() {
Yaron 2014/09/05 05:18:00 This seems a bit aggressive. I think sync cycles a
noyau (Ping after 24h) 2014/09/10 08:53:56 This class originally used the model notification,
+ if (bookmark_model_->loaded())
+ TriggerTokenRequest(false);
+}
+} // namespace enhanced_bookmarks

Powered by Google App Engine
This is Rietveld 408576698