diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-09 14:40:10 -0700 | 
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-09 14:40:10 -0700 | 
| commit | 8f7c7c0c18987b1045cb73e503f82ce429a0d924 (patch) | |
| tree | 1dbd0a192aef9fec4e9570076739fd520d4a6b31 /core/java/android | |
| parent | 463aacfbd220c9ef2f6ed915d54092289fdac05b (diff) | |
| parent | 21bf2416512a8bdf4f3a0fd9f788f409d6013c32 (diff) | |
| download | frameworks_base-8f7c7c0c18987b1045cb73e503f82ce429a0d924.zip frameworks_base-8f7c7c0c18987b1045cb73e503f82ce429a0d924.tar.gz frameworks_base-8f7c7c0c18987b1045cb73e503f82ce429a0d924.tar.bz2 | |
Merge change 6659 into donut
* changes:
  Add a Gservices setting to set the rate at which the home page refreshes.
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/provider/Settings.java | 11 | 
1 files changed, 9 insertions, 2 deletions
| diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index aa583ac..6ed1ac8 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -1328,7 +1328,7 @@ public final class Settings {           * boolean (1 or 0).           */          public static final String HAPTIC_FEEDBACK_ENABLED = "haptic_feedback_enabled"; -         +          /**           * Whether live web suggestions while the user types into search dialogs are           * enabled. Browsers and other search UIs should respect this, as it allows @@ -2300,7 +2300,7 @@ public final class Settings {           * @hide           */          public static final String BACKUP_TRANSPORT = "backup_transport"; -         +          /**           * Version for which the setup wizard was last shown.  Bumped for           * each release when there is new setup information to show. @@ -2954,6 +2954,13 @@ public final class Settings {                  "vending_pd_resend_frequency_ms";          /** +         * Frequency in milliseconds at which we should cycle through the promoted applications +         * on the home screen or the categories page. +         */ +        public static final String VENDING_PROMO_REFRESH_FREQUENCY_MS = +                "vending_promo_refresh_freq_ms"; + +        /**           * URL that points to the legal terms of service to display in Settings.           * <p>           * This should be a https URL. For a pretty user-friendly URL, use | 
