diff options
author | Ken Shirriff <kens@google.com> | 2009-08-20 13:19:14 -0700 |
---|---|---|
committer | Ken Shirriff <kens@google.com> | 2009-08-20 13:19:14 -0700 |
commit | f0f13aeadd5c9f9cfe19e6b115b3501705a97076 (patch) | |
tree | 345f3d14ff98d5f0316ae77eeec9983dd6bf398b /core/java | |
parent | 48134b78d53eca2a0a71799b0901aba5997f2eba (diff) | |
download | frameworks_base-f0f13aeadd5c9f9cfe19e6b115b3501705a97076.zip frameworks_base-f0f13aeadd5c9f9cfe19e6b115b3501705a97076.tar.gz frameworks_base-f0f13aeadd5c9f9cfe19e6b115b3501705a97076.tar.bz2 |
Add calendar sliding windows setting.
GOOGLE_CALENDAR_SYNC_WINDOW_UPDATE_DAYS indicates how often to update
the calendar sync window.
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/provider/Settings.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 1861095..84e07f0 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -3390,6 +3390,13 @@ public final class Settings { "google_calendar_sync_window_days"; /** + * How often to update the calendar sync window. + * The window will be advanced every n days. + */ + public static final String GOOGLE_CALENDAR_SYNC_WINDOW_UPDATE_DAYS = + "google_calendar_sync_window_update_days"; + + /** * @deprecated * @hide */ |