Maurice Lam
5e2e0df356
Merge "Align screen lock options to view start" into oc-dr1-dev
2017-07-31 17:35:07 +00:00
Pankaj Kanwar
2ce583e934
Merge "Add string needed to support carrier wifi in UI." into oc-mr1-dev am: 492c9f4d16
...
am: 99dc2bf58e
Change-Id: I7ee1f292f89cf4a66e8813ac8ea7e3a2804d9310
2017-07-31 17:16:21 +00:00
Pankaj Kanwar
99dc2bf58e
Merge "Add string needed to support carrier wifi in UI." into oc-mr1-dev
...
am: 492c9f4d16
Change-Id: I3d05092be28d9fc527e882464e117837242143b3
2017-07-31 17:13:22 +00:00
Pankaj Kanwar
492c9f4d16
Merge "Add string needed to support carrier wifi in UI." into oc-mr1-dev
2017-07-31 17:09:00 +00:00
Matthew Fritze
9a70472ff9
Add INTENT_ONLY as a ResultPayload Availibility
...
Test: robotests
Bug: 64165583
Change-Id: I1bb8fd3f331c8b8aabda55afe329471a9c5ef0c9
2017-07-31 08:18:20 -07:00
TreeHugger Robot
a7bd3e4a32
Merge "Update work briefcase asset."
2017-07-31 15:13:24 +00:00
Alex Kulesza
4a121ecfae
Fixing bug in UsageGraph rendering.
...
The calculateLocalPaths() method of UsageGraph converts a set of paths
in (milliseconds, percent) coordinates into the actual pixel values that
will be used for drawing. For the most part this is a one to one
process, but not always: input points that are too closely spaced to
draw accurately are skipped. The last point in the path, however, is
never skipped, in order to ensure that the graph ends at the correct
location.
The previous implementation of this method had a bug: the y-coordinates
of points that were skipped would be stored indefinitely (in the local
variable pendingYLoc) and then added back at the very end of the path
(under the condition i == mPaths.size() - 1 && pendingYLoc !=
PATH_DELIM). Under the right conditions, this led to the strange uptick
at the end of the graph seen in the associated bug.
This CL fixes the problem and attempts to make the logic slightly
clearer. It also adds tests, one of which (_similarPointMiddle) fails
for the previous code.
In more detail, previously pendingXLoc was used to hold the last x
coordinate seen, while pendingYLoc was used to hold the last *skipped* y
coordinate, or PATH_DELIM otherwise. The difference between these was
somewhat subtle and hard to understand from a quick read of the code,
and there was a bug: pendingYLoc never got reset to PATH_DELIM even if
later points were added. In this CL I have removed the pendingLoc
variables in favor of a single lx/ly pair, which always holds the local
coordinates of the most recent point, and I added an explicit boolean
skippedLastPoint to track whether the point (lx, ly) has already been
added or was skipped.
Bug: 64065296
Test: make RunSettingsRoboTests
Change-Id: I45ccffea1280d851bfae5143c2e84d188e133731
2017-07-31 11:12:17 -04:00
Fan Zhang
c16f7d55a2
Merge "Update search bar's navup content description" into oc-dr1-dev am: b79d38f2f3
am: d58a499c02
...
am: 320680e817
Change-Id: Ice553b789170afa27e1149951746daf2e2bf3f8c
2017-07-29 00:24:36 +00:00
Fan Zhang
f7df1afb2a
Merge "Update search bar's navup content description" into oc-dr1-dev am: b79d38f2f3
am: 4d5172bfeb
...
am: e0dee98e12
Change-Id: Ia2fae5915d65ba1141a5d4e37fad544c0860d102
2017-07-29 00:23:56 +00:00
Fan Zhang
320680e817
Merge "Update search bar's navup content description" into oc-dr1-dev am: b79d38f2f3
...
am: d58a499c02
Change-Id: Ia15be666f61be4cb3a2ba503242343384b037484
2017-07-29 00:21:49 +00:00
Fan Zhang
e0dee98e12
Merge "Update search bar's navup content description" into oc-dr1-dev am: b79d38f2f3
...
am: 4d5172bfeb
Change-Id: I8fec7ef3502df99ccf08731ad7a5547f13e643ea
2017-07-29 00:20:50 +00:00
Fan Zhang
d58a499c02
Merge "Update search bar's navup content description" into oc-dr1-dev
...
am: b79d38f2f3
Change-Id: Idf6df51c8c2b4f765b370f70c8f427a261d4d1bb
2017-07-29 00:16:23 +00:00
Fan Zhang
4d5172bfeb
Merge "Update search bar's navup content description" into oc-dr1-dev
...
am: b79d38f2f3
Change-Id: I774c5a2d4e456cfcb1fb4d37a5fd6373336400e5
2017-07-29 00:16:22 +00:00
Fan Zhang
b79d38f2f3
Merge "Update search bar's navup content description" into oc-dr1-dev
2017-07-29 00:10:10 +00:00
jackqdyulei
d6cb4a1738
Add shadow and wrapper classes
...
These classes are used for accessibility service. Also
add a new Availablity type.
Bug: 62022517
Test: Build
Change-Id: Ia2ff72dd04fd99b17809822907746c2411cecb62
2017-07-28 16:12:47 -07:00
pkanwar
186c9b4525
Add string needed to support carrier wifi in UI.
...
Add strings which will be used to indicate to the user in the wifi
picker and wifi config that they are connecting/connected to carrier
wifi.
Bug:30988281
Test: manual
Change-Id: I6f3b6a047bb28fddf81ed967c89fac5824d34f9f
2017-07-28 23:00:32 +00:00
Fan Zhang
fd6d4bf1c8
Layout tweak for app action buttons
...
Now shadow is no longer cropped when pressing button
Change-Id: I6ac8588abb75ca23912f62808a57e8402857e18b
Fixes: 62550425
Test: visual
(cherry picked from commit ee308b950f
)
2017-07-28 22:55:59 +00:00
Ajay Nadathur
5224edfb92
Change vision settings suggestion title
...
bug: 63867327
Test: Manually tested and verified
Change-Id: I358508534d0ef77c99851430f979b61702519313
2017-07-28 22:01:09 +00:00
Fan Zhang
4f04c68dd1
Remove DND and all gesture suggestions from Settings
...
Change-Id: I2f59c426132ca907e556b8bb2fbc869f4e830768
Fix: 64156274
Test: robotests
2017-07-28 14:39:48 -07:00
jackqdyulei
51872ed345
Use package from sipper if default is null
...
The BatteryEntry need a background thread to update the
package name and icon. However in InstalledAppDetails we
don't have this thread and it is unnecessary because we
already has the package name.
This cl:
1. Use the mPackageName from InstalledAppDetails directly in
BatteryEntry
2. Double check the defaultPackageName in AdvancedPowerUsageDetail,
use packageName from sipper if default is null
This cl is cherry picked from oc-dr to fix the test breakage.
Bug: 64127162
Test: RunSettingsRoboTests
Change-Id: I5d21afca17f177817976758c28ed86b3a10e95eb
2017-07-28 14:16:38 -07:00
Lei Yu
cb958642b6
Merge "Merge "Turn off some anomaly detectors by default" into oc-dr1-dev am: f940431d32
am: 7cfaeeca58" into oc-mr1-dev-plus-aosp
...
am: 9848aafd79
Change-Id: Ifff392b8a0231731d32d131b024eaa32a4ec14a5
2017-07-28 20:57:41 +00:00
Lei Yu
3e9e4d5bcd
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev am: f940431d32
am: 90db9083ad
...
am: 5711389270
Change-Id: Ifafa37160dddc8799fcbca61715df18f952e7ef5
2017-07-28 20:57:18 +00:00
Android Build Merger (Role)
9848aafd79
Merge "Merge "Turn off some anomaly detectors by default" into oc-dr1-dev am: f940431d32
am: 7cfaeeca58" into oc-mr1-dev-plus-aosp
2017-07-28 20:54:05 +00:00
Lei Yu
959be5f0f5
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev am: f940431d32
...
am: 7cfaeeca58
Change-Id: I04315d3e4ff3bda720468f94940d8d11f76d01e0
2017-07-28 20:53:47 +00:00
Lei Yu
5711389270
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev am: f940431d32
...
am: 90db9083ad
Change-Id: Ia08486adcf17e1747d0ea119eabd754dcc155dbc
2017-07-28 20:53:46 +00:00
Lei Yu
7cfaeeca58
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev
...
am: f940431d32
Change-Id: I2e7ab9e29e9e2910c2405af287c3c46a927b3a1c
2017-07-28 20:49:49 +00:00
Lei Yu
90db9083ad
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev
...
am: f940431d32
Change-Id: I1d3672b40a0de6dfe481295134a5cb9eeea91b89
2017-07-28 20:49:48 +00:00
Lei Yu
f940431d32
Merge "Turn off some anomaly detectors by default" into oc-dr1-dev
2017-07-28 20:39:57 +00:00
jackqdyulei
c27d74d08e
Create wrapper and shadow for AccessibilityManager
...
This is for testing, because robolectric doesn't recognize new
API.
Bug: 62022517
Test: Build
Change-Id: I1c150d86366305eacf3245bbabdf3d3e26124c77
2017-07-28 13:12:15 -07:00
Fan Zhang
58f9963fb7
Merge "Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev am: 9f93faf7ae
am: ae0dbe3e13" into oc-mr1-dev-plus-aosp
...
am: 4f1b9461fa
Change-Id: Id54aea464d3d129cd13bd2ecf88b3687d888a226
2017-07-28 19:39:19 +00:00
Fan Zhang
83a427c543
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev am: 9f93faf7ae
am: 81840033e3
...
am: 7a07f68794
Change-Id: Ib8f446f2bbde28ce98e7ad4e33550d7fdb8ad069
2017-07-28 19:38:53 +00:00
Android Build Merger (Role)
4f1b9461fa
Merge "Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev am: 9f93faf7ae
am: ae0dbe3e13" into oc-mr1-dev-plus-aosp
2017-07-28 19:34:48 +00:00
Fan Zhang
a4caed71df
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev am: 9f93faf7ae
...
am: ae0dbe3e13
Change-Id: Ica05aff63af3f64996a434862cf60b358d0f8bfc
2017-07-28 19:34:29 +00:00
Fan Zhang
7a07f68794
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev am: 9f93faf7ae
...
am: 81840033e3
Change-Id: I6898c45e13ee4418fb83d78e77303dbfa097888b
2017-07-28 19:34:13 +00:00
Fan Zhang
81840033e3
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev
...
am: 9f93faf7ae
Change-Id: I5c0dc1366be5059fe7387831c3ee88cf9dfa0b43
2017-07-28 19:29:44 +00:00
Fan Zhang
ae0dbe3e13
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev
...
am: 9f93faf7ae
Change-Id: I596f52f4db123c3df485a1a194966771706650db
2017-07-28 19:29:44 +00:00
TreeHugger Robot
9f93faf7ae
Merge "Query search result intent before launching to avoid crash" into oc-dr1-dev
2017-07-28 19:21:45 +00:00
Bill Yi
c86821c472
Merge "Import translations. DO NOT MERGE am: 8432802275
-s ours am: 3908af4a6d
-s ours" into oc-mr1-dev-plus-aosp
...
am: 70b975d109
-s ours
Change-Id: Ie12db463b5f6fba9243902033d80b3e1b42d7f16
2017-07-28 18:43:06 +00:00
Bill Yi
c2e95de62e
Import translations. DO NOT MERGE am: 8432802275
-s ours am: be723e5868
-s ours
...
am: 91c157eb9a
-s ours
Change-Id: Ibb67e97669b5e663558db29ad54289a223da760f
2017-07-28 18:42:39 +00:00
Maurice Lam
9136effad6
Align screen lock options to view start
...
Test: Manual
Bug: 63715610
Change-Id: If723a200ee402dcd7204e20e2a02cb151935d1fd
2017-07-28 18:39:09 +00:00
Android Build Merger (Role)
70b975d109
Merge "Import translations. DO NOT MERGE am: 8432802275
-s ours am: 3908af4a6d
-s ours" into oc-mr1-dev-plus-aosp
2017-07-28 18:39:08 +00:00
Bill Yi
91c157eb9a
Import translations. DO NOT MERGE am: 8432802275
-s ours
...
am: be723e5868
-s ours
Change-Id: If5f3769fcbd92212d61d70b3dcecf9f80c58e991
2017-07-28 18:38:37 +00:00
Bill Yi
08c39de146
Import translations. DO NOT MERGE am: 8432802275
-s ours
...
am: 3908af4a6d
-s ours
Change-Id: Icafe96c868f340b6fa48cc0052aca178071d1817
2017-07-28 18:38:36 +00:00
Bill Yi
3908af4a6d
Import translations. DO NOT MERGE
...
am: 8432802275
-s ours
Change-Id: I447c5c121a9aca19f9ca2da7ac29e2dae439864a
2017-07-28 18:34:04 +00:00
Bill Yi
be723e5868
Import translations. DO NOT MERGE
...
am: 8432802275
-s ours
Change-Id: I6dacb50f9fe4d6ba5a44e3a1249c58afe24747de
2017-07-28 18:34:04 +00:00
Ajay Nadathur
2248d82396
Merge "Fix fingerprint enrollment bug that fails during last leg" into oc-mr1-dev am: cfcd1c4b77
...
am: 8f0791a8e1
Change-Id: I5fb9a512746e45f67f8c783af897981af4c8830a
2017-07-28 18:08:40 +00:00
Ajay Nadathur
f012c892a2
Merge "Update text for lock screen notifications" into oc-mr1-dev am: d2352cdd08
...
am: 4f27a4de98
Change-Id: Ic7caf0cfa42d0f835b238ea17289e68c8e1ac773
2017-07-28 18:08:18 +00:00
Ajay Nadathur
3f21efd762
Merge "Remove extra steps in fingerprint flow" into oc-mr1-dev am: 57a92e5a19
...
am: 60746517bf
Change-Id: Ib8d0417d7a8d96a97945db0e5299f5990386d9e6
2017-07-28 18:07:57 +00:00
Doris Ling
c2b7f12f30
Merge "Fix null pointer exception when updating action bar shadow." into oc-mr1-dev am: 51fb9ad956
...
am: 7cdb94384f
Change-Id: Iae7f415054b1848a4c33d89e176f38fb942ded03
2017-07-28 18:07:34 +00:00
Ajay Nadathur
8f0791a8e1
Merge "Fix fingerprint enrollment bug that fails during last leg" into oc-mr1-dev
...
am: cfcd1c4b77
Change-Id: I9d99a7d65d38609e2db3c2e24f70bf537b9e8660
2017-07-28 17:51:25 +00:00