diff options
| author | 2009-08-10 15:53:46 -0700 | |
|---|---|---|
| committer | 2009-08-10 15:53:46 -0700 | |
| commit | a1cbccd7b31f3c33ea46b7fe2a287168eb672056 (patch) | |
| tree | 6ff580b9a4bd794a3245260d2f99546716188799 | |
| parent | aaa441fb606f5b09d24d870a61c6f81814663163 (diff) | |
| parent | 326580d59aa803aa217f89337757a5b7b400b486 (diff) | |
Merge change 20643
* changes:
Add calendar_sync_window_days setting to control calendar sync window.
| -rw-r--r-- | core/java/android/provider/Settings.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 3e818eb3419e..7e3f3c2192ed 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -3346,6 +3346,14 @@ public final class Settings { public static final String USE_LOCATION_FOR_SERVICES = "use_location"; /** + * The length of the calendar sync window into the future. + * This specifies the number of days into the future for the sliding window sync. + * Setting this to zero will disable sliding sync. + */ + public static final String GOOGLE_CALENDAR_SYNC_WINDOW_DAYS = + "google_calendar_sync_window_days"; + + /** * @deprecated * @hide */ |