OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ |
7 | 7 |
8 #include "chrome/browser/sync/profile_sync_service_observer.h" | 8 #include "chrome/browser/sync/profile_sync_service_observer.h" |
9 #include "sync/internal_api/public/base/model_type.h" | 9 #include "sync/internal_api/public/base/model_type.h" |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 | 24 |
25 virtual ~ProfileSyncServiceBase() {} | 25 virtual ~ProfileSyncServiceBase() {} |
26 | 26 |
27 // Whether sync is enabled by user or not. | 27 // Whether sync is enabled by user or not. |
28 virtual bool HasSyncSetupCompleted() const = 0; | 28 virtual bool HasSyncSetupCompleted() const = 0; |
29 | 29 |
30 // Returns whether processing changes is allowed. Check this before doing | 30 // Returns whether processing changes is allowed. Check this before doing |
31 // any model-modifying operations. | 31 // any model-modifying operations. |
32 virtual bool ShouldPushChanges() = 0; | 32 virtual bool ShouldPushChanges() = 0; |
33 | 33 |
34 // Get the set of currently enabled data types (as chosen or | 34 // Get the set of current active data types (those chosen or configured by |
35 // configured by the user). See class comment on ProfileSyncService | 35 // the user which have not also encountered a runtime error). |
36 // for more on what it means for a datatype to be Preferred. | 36 virtual syncer::ModelTypeSet GetActiveDataTypes() const = 0; |
37 virtual syncer::ModelTypeSet GetPreferredDataTypes() const = 0; | |
38 | 37 |
39 // Adds/removes an observer. ProfileSyncServiceBase does not take | 38 // Adds/removes an observer. ProfileSyncServiceBase does not take |
40 // ownership of the observer. | 39 // ownership of the observer. |
41 virtual void AddObserver(Observer* observer) = 0; | 40 virtual void AddObserver(Observer* observer) = 0; |
42 virtual void RemoveObserver(Observer* observer) = 0; | 41 virtual void RemoveObserver(Observer* observer) = 0; |
43 | 42 |
44 // Returns true if |observer| has already been added as an observer. | 43 // Returns true if |observer| has already been added as an observer. |
45 virtual bool HasObserver(Observer* observer) const = 0; | 44 virtual bool HasObserver(Observer* observer) const = 0; |
46 }; | 45 }; |
47 | 46 |
48 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ | 47 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_BASE_H_ |
OLD | NEW |