summaryrefslogtreecommitdiffstats
path: root/chrome/browser/enhanced_bookmarks/chrome_bookmark_server_cluster_service.h
blob: 317f16e9314cfce06c4377fdbcc87c8944844a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// 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.

#ifndef CHROME_BROWSER_ENHANCED_BOOKMARKS_CHROME_BOOKMARK_SERVER_CLUSTER_SERVICE_H_
#define CHROME_BROWSER_ENHANCED_BOOKMARKS_CHROME_BOOKMARK_SERVER_CLUSTER_SERVICE_H_

#include "components/enhanced_bookmarks/bookmark_server_cluster_service.h"
#include "components/sync_driver/sync_service_observer.h"

class ProfileSyncService;

namespace enhanced_bookmarks {

// A cluster service that invalidates its data when a sync operation finishes.
class ChromeBookmarkServerClusterService
    : public BookmarkServerClusterService,
      public sync_driver::SyncServiceObserver {
 public:
  ChromeBookmarkServerClusterService(
      const std::string& application_language_code,
      scoped_refptr<net::URLRequestContextGetter> request_context_getter,
      ProfileOAuth2TokenService* token_service,
      SigninManagerBase* signin_manager,
      EnhancedBookmarkModel* enhanced_bookmark_model,
      PrefService* pref_service,
      ProfileSyncService* sync_service);
  ~ChromeBookmarkServerClusterService() override;

  // BookmarkServerClusterService
  void AddObserver(BookmarkServerServiceObserver* observer) override;

  // sync_driver::SyncServiceObserver implementation.
  void OnStateChanged() override;
  void OnSyncCycleCompleted() override;

  // EnhancedBookmarkModelObserver implementation.
  void EnhancedBookmarkAdded(const bookmarks::BookmarkNode* node) override;
  void EnhancedBookmarkRemoved(const bookmarks::BookmarkNode* node) override;
  void EnhancedBookmarkNodeChanged(
      const bookmarks::BookmarkNode* node) override;

 private:
  // This sets an internal flag to fetch new clusters.
  void InvalidateCache();

  // This class observes the sync service for changes.
  ProfileSyncService* sync_service_;
  bool sync_refresh_skipped_ = false;
  // This holds the number of cluster refreshes needed.
  int refreshes_needed_ = 0;

  DISALLOW_COPY_AND_ASSIGN(ChromeBookmarkServerClusterService);
};

}  // namespace enhanced_bookmarks

#endif  // CHROME_BROWSER_ENHANCED_BOOKMARKS_CHROME_BOOKMARK_SERVER_CLUSTER_SERVICE_H_