| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ | 5 #ifndef COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ |
| 6 #define COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ | 6 #define COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 enum PreCommitUpdatesPolicy { | 49 enum PreCommitUpdatesPolicy { |
| 50 // By default, the server will enable or disable this experiment through the | 50 // By default, the server will enable or disable this experiment through the |
| 51 // sync protocol's experiments data type. | 51 // sync protocol's experiments data type. |
| 52 SERVER_CONTROLLED_PRE_COMMIT_UPDATE_AVOIANCE, | 52 SERVER_CONTROLLED_PRE_COMMIT_UPDATE_AVOIANCE, |
| 53 | 53 |
| 54 // This flag overrides the server's decision and enables the pre-commit | 54 // This flag overrides the server's decision and enables the pre-commit |
| 55 // update avoidance experiment. | 55 // update avoidance experiment. |
| 56 FORCE_ENABLE_PRE_COMMIT_UPDATE_AVOIDANCE, | 56 FORCE_ENABLE_PRE_COMMIT_UPDATE_AVOIDANCE, |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 enum class NudgeDelay { | |
| 60 DEFAULT_NUDGE_DELAY, | |
| 61 SHORT_NUDGE_DELAY, | |
| 62 }; | |
| 63 | |
| 64 // Configuration options for internal components. This struct is expected | 59 // Configuration options for internal components. This struct is expected |
| 65 // to grow and shrink over time with transient features / experiments, | 60 // to grow and shrink over time with transient features / experiments, |
| 66 // roughly following command line flags in chrome. Implementations of | 61 // roughly following command line flags in chrome. Implementations of |
| 67 // EngineComponentsFactory can use this information to build components | 62 // EngineComponentsFactory can use this information to build components |
| 68 // with appropriate bells and whistles. | 63 // with appropriate bells and whistles. |
| 69 struct Switches { | 64 struct Switches { |
| 70 EncryptionMethod encryption_method; | 65 EncryptionMethod encryption_method; |
| 71 BackoffOverride backoff_override; | 66 BackoffOverride backoff_override; |
| 72 NudgeDelay nudge_delay; | |
| 73 PreCommitUpdatesPolicy pre_commit_updates_policy; | 67 PreCommitUpdatesPolicy pre_commit_updates_policy; |
| 74 }; | 68 }; |
| 75 | 69 |
| 76 // For selecting the types of storage to use to persist sync data when | 70 // For selecting the types of storage to use to persist sync data when |
| 77 // BuildDirectoryBackingStore() is called. | 71 // BuildDirectoryBackingStore() is called. |
| 78 enum StorageOption { | 72 enum StorageOption { |
| 79 // BuildDirectoryBackingStore should not use persistent on-disk storage. | 73 // BuildDirectoryBackingStore should not use persistent on-disk storage. |
| 80 STORAGE_IN_MEMORY, | 74 STORAGE_IN_MEMORY, |
| 81 // Use this if you want BuildDirectoryBackingStore to create/use a real | 75 // Use this if you want BuildDirectoryBackingStore to create/use a real |
| 82 // on disk store. | 76 // on disk store. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 107 const base::FilePath& backing_filepath) = 0; | 101 const base::FilePath& backing_filepath) = 0; |
| 108 | 102 |
| 109 // Returns the Switches struct that this object is using as configuration, if | 103 // Returns the Switches struct that this object is using as configuration, if |
| 110 // the implementation is making use of one. | 104 // the implementation is making use of one. |
| 111 virtual Switches GetSwitches() const = 0; | 105 virtual Switches GetSwitches() const = 0; |
| 112 }; | 106 }; |
| 113 | 107 |
| 114 } // namespace syncer | 108 } // namespace syncer |
| 115 | 109 |
| 116 #endif // COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ | 110 #endif // COMPONENTS_SYNC_ENGINE_ENGINE_COMPONENTS_FACTORY_H_ |
| OLD | NEW |