diff options
| author | Winson Chung <winsonc@google.com> | 2016-09-02 21:49:09 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2016-09-02 21:49:13 +0000 |
| commit | a8c0fe6606dcd5f494cfb7963f12bf2301a2c8a0 (patch) | |
| tree | e2949ee63d0820fd903f65c6c8f87fae3a572bc3 /core/java/android | |
| parent | 244a1f6f78f0267edd512c21e50620dd69c3c51c (diff) | |
| parent | b258f6a4bd685e5efcb36c02d5817f659e10479b (diff) | |
Merge "Fixing issue with old tasks being visible in Overview" into nyc-mr1-dev
Diffstat (limited to 'core/java/android')
| -rwxr-xr-x | core/java/android/provider/Settings.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 79f11513e798..426e78db34a7 100755 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -6333,6 +6333,21 @@ public final class Settings { public static final String WEB_ACTION_ENABLED = "web_action_enabled"; /** + * The uptime when tasks were last persisted. This is used to adjust the previous task + * active times to be relative to the current boot time. + * @hide + */ + public static final String TASK_PERSISTER_LAST_WRITE_UPTIME = "task_persister_write_uptime"; + + /** + * Used by Overview to keep track of the last visible task's active time to determine what + * should tasks be visible. + * @hide + */ + public static final String OVERVIEW_LAST_VISIBLE_TASK_ACTIVE_UPTIME = + "overview_last_visible_task_active_uptime"; + + /** * This are the settings to be backed up. * * NOTE: Settings are backed up and restored in the order they appear |
