OSDN Git Service

android-x86/frameworks-base.git
6 years agoMerge "Merge "Update location icons (qs + status)" into pi-dev am: 478923bded" into...
Evan Laird [Fri, 25 May 2018 04:25:04 +0000 (21:25 -0700)]
Merge "Merge "Update location icons (qs + status)" into pi-dev am: 478923bded" into pi-dev-plus-aosp
am: f4381335cf

Change-Id: I8eb61c9400da2db19f94972d3fc86c3cee69d6f3

6 years agoMerge "Work around b/24465209, do not pack relocation table." am: d01890df3c am:...
Chih-Hung Hsieh [Fri, 25 May 2018 04:02:54 +0000 (21:02 -0700)]
Merge "Work around b/24465209, do not pack relocation table." am: d01890df3c am: d7f77b5a12
am: 618e17473c

Change-Id: I5a09847436a0608942c9c5636d807d7a984def73

6 years agoMerge "Merged many autofill session metrics into AUTOFILL_REQUEST:"
Felipe Leme [Fri, 25 May 2018 03:32:22 +0000 (03:32 +0000)]
Merge "Merged many autofill session metrics into AUTOFILL_REQUEST:"

6 years agoMerge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev...
Evan Laird [Fri, 25 May 2018 01:55:01 +0000 (18:55 -0700)]
Merge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev am: bb5154982e
am: 7ad5165be0

Change-Id: I7df4d4133ea66dc88b6939615e877118c982b7ed

6 years agoMerge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev am...
Michael Wachenschwanz [Fri, 25 May 2018 01:28:37 +0000 (18:28 -0700)]
Merge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev am: 14c61286c4
am: 3ba689851c

Change-Id: Id5fa43e2706fc76436d9d2b7cea3d18e73181248

6 years agoMerge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocke...
Wale Ogunwale [Fri, 25 May 2018 01:24:22 +0000 (18:24 -0700)]
Merge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocked" into pi-dev am: 473b8b09b0
am: 64ac4ee699

Change-Id: I241d016f874cd5b6f169c5132b8ec23d10753351

6 years agoMerged many autofill session metrics into AUTOFILL_REQUEST:
Felipe Leme [Mon, 21 May 2018 18:18:46 +0000 (11:18 -0700)]
Merged many autofill session metrics into AUTOFILL_REQUEST:

- AUTOFILL_UI_LATENCY
- AUTOFILL_AUTHENTICATED;
- AUTOFILL_DATASET_AUTHENTICATED
- AUTOFILL_INVALID_AUTHENTICATION
- AUTOFILL_INVALID_DATASET_AUTHENTICATION

At least one AUTOFILL_REQUEST is created on each session; additional ones are
created for each additional request made to the service (which is tracked by
FIELD_AUTOFILL_REQUEST_INDEX).

Also:
- Added TYPE_CLOSE to indicate a timeout waiting for the service response.
- Added FIELD_AUTOFILL_REQUEST_ORDINAL to indicate the order of the request in
  the session.
- Added FIELD_AUTOFILL_NUMBER_REQUESTS on AUTOFILL_SESSION_FINISHED.
- Created an AUTOFILL_FIELD_FLAGS to avoid conflict with FIELD_FLAGS.

Test: atest CtsAutoFillServiceTestCases # to make sure it didn't break anything
Test: manually run some test and watched the result of
      'adb shell logcat -b events | grep sysui', as described below.

1) LoginActivityTest#testAutoFillNoDatasets:

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,-1,1454,1]
[757,919,758,4,806,android.autofillservice.cts,908,android.autofillservice.cts,1455,1]

Where 907=AUTOFILL_REQUEST, 919=AUTOFILL_SESSION_FINISHED,
1454=FIELD_AUTOFILL_REQUEST_ORDINAL, 1455=FIELD_AUTOFILL_NUMBER_REQUESTS,
758:10 = TYPE_SUCCESS, 909 = FIELD_AUTOFILL_NUM_DATASETS (-1 == null response)

2) LoginActivityTest#testAutoFillTwoDatasetsSameNumberOfFields:

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,2,1145,60,1454,1]

Where 1145=FIELD_AUTOFILL_DURATION (60ms UI latency)

3) LoginActivityTest#testCancellationSignalCalledAfterTimeout:

[757,907,758,2,806,android.autofillservice.cts,908,android.autofillservice.cts,1454,1]

Where 758:2 = TYPE_CLOSE (timeout)

4) LoginActivityTest#testAutofillManuallyOneDataset:

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1145,67,1452,1,1454,1]

Where 1452=FIELD_AUTOFILL_FLAGS and 1=FLAG_MANUAL_REQUEST

5) FillEventHistoryTest#testNoEvents_whenServiceReturnsFailure:

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1145,48,1454,1]
[757,907,758,11,806,android.autofillservice.cts,908,android.autofillservice.cts,1454,2]
[757,919,758,4,806,android.autofillservice.cts,908,android.autofillservice.cts,1455,2]

Where 758:11 = TYPE_FAILURE

6) AuthenticationTest#testFillResponseAuthJustOneField

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,0,1145,91,1453,912,1454,1]

Where 1453:912 is FIELD_AUTOFILL_AUTHENTICATION_STATUS = AUTOFILL_AUTHENTICATED

7) AuthenticationTest#testDatasetAuthTwoDatasets

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,2,1145,64,1453,1126,1454,1]

Where 1453:1126 is FIELD_AUTOFILL_AUTHENTICATION_STATUS =
                   AUTOFILL_DATASET_AUTHENTICATED

8) AuthenticationTest#testFillResponseAuthServiceHasNoData
[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,0,1145,49,1453,1128,1454,1]

Where 1453:1128 is FIELD_AUTOFILL_AUTHENTICATION_STATUS =
                   AUTOFILL_INVALID_AUTHENTICATION

9) VirtualContainerActivityCompatModeTest#testAutofillSync

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1145,53,1414,1,1454,1]
[757,919,758,4,806,android.autofillservice.cts,908,android.autofillservice.cts,1414,1,1455,1]

Where 1414 is FIELD_AUTOFILL_COMPAT_MODE

10) FieldsClassificationTest#testHit_manyUserData_manyDetectableFields

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,0,1271,2,1454,1]
Where 1271 is FIELD_AUTOFILL_NUM_FIELD_CLASSIFICATION_IDS

11)PartitionedActivityTest#testAutofill4PartitionsMixManualAndAuto

[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1145,109,1454,1]
[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1452,1,1454,2]
[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1454,3]
[757,907,758,10,806,android.autofillservice.cts,908,android.autofillservice.cts,909,1,1452,1,1454,4]
[757,919,758,4,806,android.autofillservice.cts,908,android.autofillservice.cts,1455,4]

Bug: 80093094
Fixes: 80095814

Change-Id: I87424834fc925a3bcba410eec5aa32fcd6253367
(cherry picked from commit 01d82a51670065a683ec67b5c3a7268617a19c1f)

6 years agoMerge "Update some app permission icons" into pi-dev am: d49118bd48
Antony Sargent [Fri, 25 May 2018 01:19:56 +0000 (18:19 -0700)]
Merge "Update some app permission icons" into pi-dev am: d49118bd48
am: 78351af8c4

Change-Id: Icd974a09aa525ec6d96c931b655757930ce976f9

6 years agoMerge "Flip flag to enable vibration on wireless charging" into pi-dev am: 65477d138d
Beverly [Fri, 25 May 2018 01:05:46 +0000 (18:05 -0700)]
Merge "Flip flag to enable vibration on wireless charging" into pi-dev am: 65477d138d
am: 9b3ff51d87

Change-Id: I36657c303cdf6d60e3678ffe2cc161c5a221b0f1

6 years agoMerge "On configuration change setup screen decorations" into pi-dev am: 10908b1972
Beverly [Fri, 25 May 2018 01:03:01 +0000 (18:03 -0700)]
Merge "On configuration change setup screen decorations" into pi-dev am: 10908b1972
am: 2a4ce94354

Change-Id: I298223a3e5712b91fa6105aa44fb35996d637f65

6 years agoMerge "Revert "WallpaperColors hint computation"" into pi-dev am: cf2c35dca6
Lucas Dupin [Fri, 25 May 2018 01:00:11 +0000 (18:00 -0700)]
Merge "Revert "WallpaperColors hint computation"" into pi-dev am: cf2c35dca6
am: 30f0867ee0

Change-Id: Iae41244b5541945304d8965c22602efbd4b32988

6 years agoMerge "Merge "Hide system apps until installed (1/2)" into pi-dev am: 56cc567dfd...
sanryhuang [Fri, 25 May 2018 00:53:48 +0000 (17:53 -0700)]
Merge "Merge "Hide system apps until installed (1/2)" into pi-dev am: 56cc567dfd" into pi-dev-plus-aosp
am: 984436e530

Change-Id: I24ddd296f8d72fa69c557935156ee6380955f33b

6 years agoMerge "Framework: Add API to get zygote PID" am: 1109e2333f am: 07578c786a
Andreas Gampe [Fri, 25 May 2018 00:47:57 +0000 (17:47 -0700)]
Merge "Framework: Add API to get zygote PID" am: 1109e2333f am: 07578c786a
am: 4f11d5381e

Change-Id: I827a7df417597f17f78276052c5b17e064ebec7d

6 years agoMerge "Destroy networks as soon as they are disconnected." into pi-dev am: d88abbfd78
Chalard Jean [Fri, 25 May 2018 00:44:33 +0000 (17:44 -0700)]
Merge "Destroy networks as soon as they are disconnected." into pi-dev am: d88abbfd78
am: 02fe3ac503

Change-Id: Ic4c7520e907de353a01c2a3a8a50d661dee4a994

6 years agoMerge "DngCreator: Use new LENS_DISTORTION result field if available." into pi-dev...
Eino-Ville Talvala [Fri, 25 May 2018 00:41:04 +0000 (17:41 -0700)]
Merge "DngCreator: Use new LENS_DISTORTION result field if available." into pi-dev am: 05a6e77106
am: b73a867344

Change-Id: I8719566b4893718a642738c67fd6727f24d0453a

6 years agoMerge "Use TCM context if application context is unavailble." into pi-dev am: 87631c2d29
Michael Wright [Fri, 25 May 2018 00:38:08 +0000 (17:38 -0700)]
Merge "Use TCM context if application context is unavailble." into pi-dev am: 87631c2d29
am: c4e7c86a60

Change-Id: Ie0e1260edc7749c557cefcc4faa966c8756af438

6 years agoMerge "Revert "Write UsageEvents Parcel data as a Blob"" into pi-dev am: d55c618340
Michael Wachenschwanz [Fri, 25 May 2018 00:35:33 +0000 (17:35 -0700)]
Merge "Revert "Write UsageEvents Parcel data as a Blob"" into pi-dev am: d55c618340
am: 2c2424a091

Change-Id: I707afa9244687be4356b5f7109b320433737239a

6 years agoMerge "Add camera APIs to light grey." into pi-dev am: 9ed0da42b3
Nicolas Geoffray [Fri, 25 May 2018 00:32:19 +0000 (17:32 -0700)]
Merge "Add camera APIs to light grey." into pi-dev am: 9ed0da42b3
am: 5931603f3d

Change-Id: I08a11e157b36493d80a91f856c589e20b35de2a4

6 years agoMerge "More greylist additions from bug scrape." into pi-dev am: 7ac3797f16
Mathew Inwood [Fri, 25 May 2018 00:29:20 +0000 (17:29 -0700)]
Merge "More greylist additions from bug scrape." into pi-dev am: 7ac3797f16
am: 1a0fa5af88

Change-Id: I66e6189644529907884aafafda6ca4ffc14da225

6 years agoMerge "Differentiate MediaBrowsers in a process for MediaBrowserService" into pi...
Jaewan Kim [Fri, 25 May 2018 00:26:14 +0000 (17:26 -0700)]
Merge "Differentiate MediaBrowsers in a process for MediaBrowserService" into pi-dev am: 0e7a307e14
am: 0349869c06

Change-Id: I1ae64f0ac0192afd4e6fc777a1ed4b2b7dd579a3

6 years agoMerge "Calculate cellular radio value from modem.controller values." into pi-dev...
Hui Yu [Fri, 25 May 2018 00:23:11 +0000 (17:23 -0700)]
Merge "Calculate cellular radio value from modem.controller values." into pi-dev am: b82d3d7e74
am: 1fa3b11dfe

Change-Id: I53bfc386637e2cf8358703e1844160ad470b24cd

6 years agoMerge "Merge "Initial changes for full-width quickscrub." into pi-dev am: 004e01d388...
Winson Chung [Fri, 25 May 2018 00:10:23 +0000 (17:10 -0700)]
Merge "Merge "Initial changes for full-width quickscrub." into pi-dev am: 004e01d388" into pi-dev-plus-aosp
am: ac4381d357

Change-Id: I613bac5e256a5d0cb7b51dedd2ca528dd3422e2f

6 years agoMerge "Use correct filename when adding to ringtone" am: daff857ffd am: 24062f05d3
Daisuke Teranishi [Fri, 25 May 2018 00:03:53 +0000 (17:03 -0700)]
Merge "Use correct filename when adding to ringtone" am: daff857ffd am: 24062f05d3
am: 2e92e5c30b

Change-Id: I36e7f3d6787deb0c1efdcdaf55d209f55dcdc625

6 years agoMerge "Merge "Fork navbar layout for quickstep" into pi-dev am: 5d8559fea3" into...
Mike Digman [Thu, 24 May 2018 23:59:53 +0000 (16:59 -0700)]
Merge "Merge "Fork navbar layout for quickstep" into pi-dev am: 5d8559fea3" into pi-dev-plus-aosp
am: 92b686dd69

Change-Id: Ic2c63428d5f217ef53a6233d01292be26bd89699

6 years agoMerge changes from topic "am-dfb2548770de4bb299490c765377bd11" into pi-dev-plus-aosp
David Brazdil [Thu, 24 May 2018 23:53:25 +0000 (16:53 -0700)]
Merge changes from topic "am-dfb2548770de4bb299490c765377bd11" into pi-dev-plus-aosp
am: 8c8f08642d

Change-Id: Ic99d3e8ecd9c41769e4694fa737d809c7c5fa01d

6 years ago[automerger skipped] DO NOT MERGE ANYWHERE Update hiddenapi-p-light-greylist.txt...
David Brazdil [Thu, 24 May 2018 23:43:02 +0000 (16:43 -0700)]
[automerger skipped] DO NOT MERGE ANYWHERE Update hiddenapi-p-light-greylist.txt am: 85c81cb24c  -s ours am: 6041de0722  -s ours
am: a987892d2d  -s ours

Change-Id: If82edacb5893db43f6c8f5c37e73fa0ffe82efdd

6 years agoMerge "Merge "Fix issue with slippery flag not being updated correctly" into pi-dev...
Winson Chung [Thu, 24 May 2018 23:34:33 +0000 (16:34 -0700)]
Merge "Merge "Fix issue with slippery flag not being updated correctly" into pi-dev am: 6450335b56" into pi-dev-plus-aosp
am: c272e26926

Change-Id: Ie50c98030e3729fb0cd3a4ce909158fa0828fc73

6 years agoMerge "Merge "[Notif] Remove transient views on swipe out" into pi-dev am: 3622bfdba0...
Rohan Shah [Thu, 24 May 2018 23:29:12 +0000 (16:29 -0700)]
Merge "Merge "[Notif] Remove transient views on swipe out" into pi-dev am: 3622bfdba0" into pi-dev-plus-aosp
am: 407d494564

Change-Id: I8b9c9dce82047a0ad4df48f5b93dcd24d4cfca92

6 years ago[automerger skipped] Merge changes I3b3bcbbd,I18b3f263,I3c416c1a am: 7b0935509d am...
Remi NGUYEN VAN [Thu, 24 May 2018 23:23:43 +0000 (16:23 -0700)]
[automerger skipped] Merge changes I3b3bcbbd,I18b3f263,I3c416c1a am: 7b0935509d am: 20c62063b6  -s ours
am: a0eaaddc8a  -s ours

Change-Id: Iff267b941a8904aa2c6555a6d9f66bcb0fe0eb28

6 years agoMerge "Merge "Unsuspending packages when a PO or DO is set" into pi-dev am: 24e913e5a...
Suprabh Shukla [Thu, 24 May 2018 23:20:02 +0000 (16:20 -0700)]
Merge "Merge "Unsuspending packages when a PO or DO is set" into pi-dev am: 24e913e5a8" into pi-dev-plus-aosp
am: 96471dbe45

Change-Id: Ic32837a81ba6c52f3188a8de0596e99327e7b86a

6 years agoMerge "Merge "Camera: Use fallback key if the requested key returns null" into pi...
Justin Yun [Thu, 24 May 2018 23:14:07 +0000 (16:14 -0700)]
Merge "Merge "Camera: Use fallback key if the requested key returns null" into pi-dev am: 062c050d01" into pi-dev-plus-aosp
am: c7a55ad418

Change-Id: I862b506697883856e6ae88a0d6c9cc90e056758f

6 years agoMerge "Merge "MediaPlayer: ensure that jni code returns after throwing exceptions...
Dongwon Kang [Thu, 24 May 2018 23:08:11 +0000 (16:08 -0700)]
Merge "Merge "MediaPlayer: ensure that jni code returns after throwing exceptions." into pi-dev am: 1a9def3dc7" into pi-dev-plus-aosp
am: 42542ca0bb

Change-Id: I2c892282a2aee6b03395b1c61ebae19df8c4397c

6 years agoMerge "Merge "Remove logging from RecentsOnboarding" into pi-dev am: ee9b570dce"...
Tracy Zhou [Thu, 24 May 2018 23:02:12 +0000 (16:02 -0700)]
Merge "Merge "Remove logging from RecentsOnboarding" into pi-dev am: ee9b570dce" into pi-dev-plus-aosp
am: 42515b706f

Change-Id: Iffc4271cc094c361e38a7ff63e746f6ac3a45707

6 years agoMerge "Merge "Fix per app GPS power usage." into pi-dev am: da4c54e9da" into pi-dev...
Hui Yu [Thu, 24 May 2018 22:55:54 +0000 (15:55 -0700)]
Merge "Merge "Fix per app GPS power usage." into pi-dev am: da4c54e9da" into pi-dev-plus-aosp
am: df34735c50

Change-Id: I7ca08692d661c56cedf3548c5d557472e7b16caf

6 years agoMerge "Merge "Update location icons (qs + status)" into pi-dev am: 478923bded" into...
Android Build Merger (Role) [Thu, 24 May 2018 21:48:59 +0000 (21:48 +0000)]
Merge "Merge "Update location icons (qs + status)" into pi-dev am: 478923bded" into pi-dev-plus-aosp

6 years agoMerge "Update location icons (qs + status)" into pi-dev
Evan Laird [Thu, 24 May 2018 21:48:35 +0000 (14:48 -0700)]
Merge "Update location icons (qs + status)" into pi-dev
am: 478923bded

Change-Id: I524eb54f32c297de6a5eca1d4ed7f2f753adce3d

6 years agoMerge "Merge "FixBug: Round corner gone when scroll to non-first item and drag to...
Arthur Hung [Thu, 24 May 2018 21:47:23 +0000 (14:47 -0700)]
Merge "Merge "FixBug: Round corner gone when scroll to non-first item and drag to close" into pi-dev am: d732ec697e" into pi-dev-plus-aosp
am: bcc442d7bc

Change-Id: I69c0542bcac7e2370f93b3db53ad56f3d0740923

6 years agoMerge "Work around b/24465209, do not pack relocation table." am: d01890df3c
Chih-Hung Hsieh [Thu, 24 May 2018 21:44:52 +0000 (14:44 -0700)]
Merge "Work around b/24465209, do not pack relocation table." am: d01890df3c
am: d7f77b5a12

Change-Id: I4922e3c5c43d90b270a23c6fff343826941a4237

6 years agoMerge "[automerger skipped] Merge "Fixup SntpClient to bypass Private DNS" am: a7183b...
Erik Kline [Thu, 24 May 2018 21:37:15 +0000 (14:37 -0700)]
Merge "[automerger skipped] Merge "Fixup SntpClient to bypass Private DNS" am: a7183b92c4 am: 95cb9a1cb3  -s ours" into pi-dev-plus-aosp
am: 9f376da4b9  -s ours

Change-Id: I6424a73acdc4829920e864b122455d4f90776aab

6 years agoMerge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev
Evan Laird [Thu, 24 May 2018 21:34:05 +0000 (14:34 -0700)]
Merge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev
am: bb5154982e

Change-Id: Icac4be32d8469b860b21185417434b812c68b2c3

6 years agoMerge "Work around b/24465209, do not pack relocation table."
Chih-Hung Hsieh [Thu, 24 May 2018 21:33:24 +0000 (14:33 -0700)]
Merge "Work around b/24465209, do not pack relocation table."
am: d01890df3c

Change-Id: If94d1d0587ad7314df416407c1ab4ad8dedc559a

6 years agoMerge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev
Michael Wachenschwanz [Thu, 24 May 2018 21:26:40 +0000 (14:26 -0700)]
Merge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev
am: 14c61286c4

Change-Id: If4e6d7fbf0d6799ce88ec33b37fb8cef7e290f1e

6 years agoMerge "MediaCodec: make setVideoScalingMode usable for IGBP-based clients" into pi...
Lajos Molnar [Thu, 24 May 2018 21:22:49 +0000 (14:22 -0700)]
Merge "MediaCodec: make setVideoScalingMode usable for IGBP-based clients" into pi-dev am: 604064e82d
am: 226687cb4d

Change-Id: Ie4ff2a9d4a268944d96b6dbed7a0eb734cd0cd71

6 years agoMerge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocke...
Wale Ogunwale [Thu, 24 May 2018 21:22:04 +0000 (14:22 -0700)]
Merge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocked" into pi-dev
am: 473b8b09b0

Change-Id: I7fb50faab7f5eeb760eb698f95ccb03ea95bb38f

6 years agoMerge "Update some app permission icons" into pi-dev
Antony Sargent [Thu, 24 May 2018 21:17:24 +0000 (14:17 -0700)]
Merge "Update some app permission icons" into pi-dev
am: d49118bd48

Change-Id: I790943113a9db1c3fbdc49ba829b80d99241877a

6 years agoMerge "Flip flag to enable vibration on wireless charging" into pi-dev
Beverly [Thu, 24 May 2018 21:12:44 +0000 (14:12 -0700)]
Merge "Flip flag to enable vibration on wireless charging" into pi-dev
am: 65477d138d

Change-Id: Ieb817348628c020578ea7c8c7205b6e9f412e2ed

6 years agoMerge "On configuration change setup screen decorations" into pi-dev
Beverly [Thu, 24 May 2018 21:07:58 +0000 (14:07 -0700)]
Merge "On configuration change setup screen decorations" into pi-dev
am: 10908b1972

Change-Id: I2857ad8c969543843821e64154df9d738c4368db

6 years agoMerge "Revert "WallpaperColors hint computation"" into pi-dev
Lucas Dupin [Thu, 24 May 2018 21:03:24 +0000 (14:03 -0700)]
Merge "Revert "WallpaperColors hint computation"" into pi-dev
am: cf2c35dca6

Change-Id: Ibc3760ce650c8d48f261e6486edb51582391b710

6 years agoMerge "Merge "Hide system apps until installed (1/2)" into pi-dev am: 56cc567dfd...
Android Build Merger (Role) [Thu, 24 May 2018 20:54:27 +0000 (20:54 +0000)]
Merge "Merge "Hide system apps until installed (1/2)" into pi-dev am: 56cc567dfd" into pi-dev-plus-aosp

6 years agoMerge "Prevent onboarding counters from overflow." into pi-dev am: 0ce1cc626b
Tracy Zhou [Thu, 24 May 2018 20:54:17 +0000 (13:54 -0700)]
Merge "Prevent onboarding counters from overflow." into pi-dev am: 0ce1cc626b
am: e3cce5bf98

Change-Id: I414527e5247f64500b375e9cfc6ac103fc6cf9bd

6 years agoMerge "Update location icons (qs + status)" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:50:41 +0000 (20:50 +0000)]
Merge "Update location icons (qs + status)" into pi-dev

6 years agoMerge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:50:35 +0000 (20:50 +0000)]
Merge "Add tuning to SystemUI to draw into a DisplayCutout's bounds" into pi-dev

6 years agoMerge "Framework: Add API to get zygote PID" am: 1109e2333f
Andreas Gampe [Thu, 24 May 2018 20:49:41 +0000 (13:49 -0700)]
Merge "Framework: Add API to get zygote PID" am: 1109e2333f
am: 07578c786a

Change-Id: Ibee53631caad0d6ce2108970598f5226d20a849d

6 years agoMerge "Hide system apps until installed (1/2)" into pi-dev
sanryhuang [Thu, 24 May 2018 20:49:35 +0000 (13:49 -0700)]
Merge "Hide system apps until installed (1/2)" into pi-dev
am: 56cc567dfd

Change-Id: I5256f98f1face09fbd95146d8a36335b37b3091f

6 years agoMerge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev
Michael Wachenschwanz [Thu, 24 May 2018 20:45:34 +0000 (20:45 +0000)]
Merge "Revert "Revert "Write UsageEvents Parcel data as a Blob""" into pi-dev

6 years agoMerge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocke...
TreeHugger Robot [Thu, 24 May 2018 20:41:14 +0000 (20:41 +0000)]
Merge "Added display null check to ActivityStackSupervisor.getNextFocusableStackLocked" into pi-dev

6 years agoMerge "Destroy networks as soon as they are disconnected." into pi-dev
Chalard Jean [Thu, 24 May 2018 20:35:45 +0000 (13:35 -0700)]
Merge "Destroy networks as soon as they are disconnected." into pi-dev
am: d88abbfd78

Change-Id: I0617f0ff6e46a1d3764335a1e7ad01b34c8cc5a8

6 years agoMerge "Store flashlight status and broadcast it needed for flashlight slice."
TreeHugger Robot [Thu, 24 May 2018 20:27:55 +0000 (20:27 +0000)]
Merge "Store flashlight status and broadcast it needed for flashlight slice."

6 years agoMerge "Update some app permission icons" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:17:14 +0000 (20:17 +0000)]
Merge "Update some app permission icons" into pi-dev

6 years agoMerge "Flip flag to enable vibration on wireless charging" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:05:54 +0000 (20:05 +0000)]
Merge "Flip flag to enable vibration on wireless charging" into pi-dev

6 years agoMerge "On configuration change setup screen decorations" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:05:49 +0000 (20:05 +0000)]
Merge "On configuration change setup screen decorations" into pi-dev

6 years agoMerge "DngCreator: Use new LENS_DISTORTION result field if available." into pi-dev
Eino-Ville Talvala [Thu, 24 May 2018 20:05:23 +0000 (13:05 -0700)]
Merge "DngCreator: Use new LENS_DISTORTION result field if available." into pi-dev
am: 05a6e77106

Change-Id: I7a581cd2966ce1a5370bbfb5dc581d2552e7bff1

6 years agoMerge "Framework: Add API to get zygote PID"
Andreas Gampe [Thu, 24 May 2018 20:00:41 +0000 (13:00 -0700)]
Merge "Framework: Add API to get zygote PID"
am: 1109e2333f

Change-Id: I6f50efa61bcdec321cd71edae8a28881293c0398

6 years agoMerge "Revert "WallpaperColors hint computation"" into pi-dev
TreeHugger Robot [Thu, 24 May 2018 20:00:27 +0000 (20:00 +0000)]
Merge "Revert "WallpaperColors hint computation"" into pi-dev

6 years agoMerge "Use TCM context if application context is unavailble." into pi-dev
Michael Wright [Thu, 24 May 2018 19:58:15 +0000 (12:58 -0700)]
Merge "Use TCM context if application context is unavailble." into pi-dev
am: 87631c2d29

Change-Id: I8ec20d2c5815dfffeb60f11c0b8f9490feed5e94

6 years agoMerge "Revert "Write UsageEvents Parcel data as a Blob"" into pi-dev
Michael Wachenschwanz [Thu, 24 May 2018 19:53:33 +0000 (12:53 -0700)]
Merge "Revert "Write UsageEvents Parcel data as a Blob"" into pi-dev
am: d55c618340

Change-Id: I88a269fd3bcb9f6cda5c6f95ac7edb84db1239f1

6 years agoMerge "Add camera APIs to light grey." into pi-dev
Nicolas Geoffray [Thu, 24 May 2018 19:48:57 +0000 (12:48 -0700)]
Merge "Add camera APIs to light grey." into pi-dev
am: 9ed0da42b3

Change-Id: I985d6d64b670b4f56ad684c94bc83b21b7bd4185

6 years agoMerge "More greylist additions from bug scrape." into pi-dev
Mathew Inwood [Thu, 24 May 2018 19:44:22 +0000 (12:44 -0700)]
Merge "More greylist additions from bug scrape." into pi-dev
am: 7ac3797f16

Change-Id: I9146e0e5d0bc39438c836f9e2cddd881e08b2a16

6 years agoMerge "Differentiate MediaBrowsers in a process for MediaBrowserService" into pi-dev
Jaewan Kim [Thu, 24 May 2018 19:39:29 +0000 (12:39 -0700)]
Merge "Differentiate MediaBrowsers in a process for MediaBrowserService" into pi-dev
am: 0e7a307e14

Change-Id: I455466d79d0c1b534d87b33cdb787194422a51bf

6 years agoMerge "Calculate cellular radio value from modem.controller values." into pi-dev
Hui Yu [Thu, 24 May 2018 19:34:51 +0000 (12:34 -0700)]
Merge "Calculate cellular radio value from modem.controller values." into pi-dev
am: b82d3d7e74

Change-Id: Id309129d9a12a2ec97785c0ef69d09e4cce1dd27

6 years agoMerge "SystemUI theme feature flag" into pi-dev am: 3884e936c9
Lucas Dupin [Thu, 24 May 2018 19:30:35 +0000 (12:30 -0700)]
Merge "SystemUI theme feature flag" into pi-dev am: 3884e936c9
am: 2fd55ef0f3

Change-Id: I49482a8ca297b72110d8309051564bccd970b42f

6 years agoMerge "Frameworks: convert platformprotos to soong"
TreeHugger Robot [Thu, 24 May 2018 19:20:43 +0000 (19:20 +0000)]
Merge "Frameworks: convert platformprotos to soong"

6 years agoMerge "Merge "Initial changes for full-width quickscrub." into pi-dev am: 004e01d388...
Android Build Merger (Role) [Thu, 24 May 2018 19:19:30 +0000 (19:19 +0000)]
Merge "Merge "Initial changes for full-width quickscrub." into pi-dev am: 004e01d388" into pi-dev-plus-aosp

6 years agoMerge "Initial changes for full-width quickscrub." into pi-dev
Winson Chung [Thu, 24 May 2018 19:18:58 +0000 (12:18 -0700)]
Merge "Initial changes for full-width quickscrub." into pi-dev
am: 004e01d388

Change-Id: I47d4709cd607cb12057c36f76074474ba0875f45

6 years agoMerge "Use correct filename when adding to ringtone" am: daff857ffd
Daisuke Teranishi [Thu, 24 May 2018 19:18:14 +0000 (12:18 -0700)]
Merge "Use correct filename when adding to ringtone" am: daff857ffd
am: 24062f05d3

Change-Id: Id9d89491c5604b1611b22f215827f55de98f8ac2

6 years agoMerge "Merge "Fork navbar layout for quickstep" into pi-dev am: 5d8559fea3" into...
Android Build Merger (Role) [Thu, 24 May 2018 19:14:40 +0000 (19:14 +0000)]
Merge "Merge "Fork navbar layout for quickstep" into pi-dev am: 5d8559fea3" into pi-dev-plus-aosp

6 years agoMerge "Fork navbar layout for quickstep" into pi-dev
Mike Digman [Thu, 24 May 2018 19:14:13 +0000 (12:14 -0700)]
Merge "Fork navbar layout for quickstep" into pi-dev
am: 5d8559fea3

Change-Id: I90f524dba0edfdee7b83f71d7f6b69fc9c48855e

6 years agoMerge "Work around b/24465209, do not pack relocation table."
Treehugger Robot [Thu, 24 May 2018 19:13:19 +0000 (19:13 +0000)]
Merge "Work around b/24465209, do not pack relocation table."

6 years agoMerge changes from topic "am-dfb2548770de4bb299490c765377bd11" into pi-dev-plus-aosp
Android Build Merger (Role) [Thu, 24 May 2018 19:11:45 +0000 (19:11 +0000)]
Merge changes from topic "am-dfb2548770de4bb299490c765377bd11" into pi-dev-plus-aosp

* changes:
  Merge changes Id81271ff,I8f298371 am: e7372ab0d5 am: e770b16975
  [automerger skipped] DO NOT MERGE ANYWHERE Update hiddenapi-p-light-greylist.txt am: 85c81cb24c  -s ours am: 6041de0722  -s ours

6 years agoMerge changes Id81271ff,I8f298371 am: e7372ab0d5
David Brazdil [Thu, 24 May 2018 19:11:13 +0000 (12:11 -0700)]
Merge changes Id81271ff,I8f298371 am: e7372ab0d5
am: e770b16975

Change-Id: I60749ef44cb4dc2c1629831daabb71ed76030c97

6 years agoMerge "Merge "Fix issue with slippery flag not being updated correctly" into pi-dev...
Android Build Merger (Role) [Thu, 24 May 2018 19:09:59 +0000 (19:09 +0000)]
Merge "Merge "Fix issue with slippery flag not being updated correctly" into pi-dev am: 6450335b56" into pi-dev-plus-aosp

6 years agoMerge "Fix issue with slippery flag not being updated correctly" into pi-dev
Winson Chung [Thu, 24 May 2018 19:09:25 +0000 (12:09 -0700)]
Merge "Fix issue with slippery flag not being updated correctly" into pi-dev
am: 6450335b56

Change-Id: If81769bf6e7911be9e16a2a092cff43b345dedce

6 years ago[automerger skipped] DO NOT MERGE ANYWHERE Update hiddenapi-p-light-greylist.txt...
David Brazdil [Thu, 24 May 2018 19:06:00 +0000 (12:06 -0700)]
[automerger skipped] DO NOT MERGE ANYWHERE Update hiddenapi-p-light-greylist.txt am: 85c81cb24c  -s ours
am: 6041de0722  -s ours

Change-Id: I1fe6b92ca9db6ea66427760fb529b39aaf30b304

6 years agoMerge "Merge "[Notif] Remove transient views on swipe out" into pi-dev am: 3622bfdba0...
Android Build Merger (Role) [Thu, 24 May 2018 19:05:13 +0000 (19:05 +0000)]
Merge "Merge "[Notif] Remove transient views on swipe out" into pi-dev am: 3622bfdba0" into pi-dev-plus-aosp

6 years agoMerge "[Notif] Remove transient views on swipe out" into pi-dev
Rohan Shah [Thu, 24 May 2018 19:04:40 +0000 (12:04 -0700)]
Merge "[Notif] Remove transient views on swipe out" into pi-dev
am: 3622bfdba0

Change-Id: I6038513050265cdd508188bc71f42b1a42eaf8e5

6 years ago[automerger skipped] Merge changes I3b3bcbbd,I18b3f263,I3c416c1a am: 7b0935509d
Remi NGUYEN VAN [Thu, 24 May 2018 19:03:38 +0000 (12:03 -0700)]
[automerger skipped] Merge changes I3b3bcbbd,I18b3f263,I3c416c1a am: 7b0935509d
am: 20c62063b6  -s ours

Change-Id: Ib1c7270ff0b4dff4f693d9d9a7330bd70ec7505d

6 years agoMerge "Merge "Unsuspending packages when a PO or DO is set" into pi-dev am: 24e913e5a...
Android Build Merger (Role) [Thu, 24 May 2018 19:00:30 +0000 (19:00 +0000)]
Merge "Merge "Unsuspending packages when a PO or DO is set" into pi-dev am: 24e913e5a8" into pi-dev-plus-aosp

6 years agoMerge "Unsuspending packages when a PO or DO is set" into pi-dev
Suprabh Shukla [Thu, 24 May 2018 19:00:03 +0000 (12:00 -0700)]
Merge "Unsuspending packages when a PO or DO is set" into pi-dev
am: 24e913e5a8

Change-Id: Ibc0d2d064fa642f668cf084022f0f7d10e82bc88

6 years agoMerge "Merge "Camera: Use fallback key if the requested key returns null" into pi...
Android Build Merger (Role) [Thu, 24 May 2018 18:55:51 +0000 (18:55 +0000)]
Merge "Merge "Camera: Use fallback key if the requested key returns null" into pi-dev am: 062c050d01" into pi-dev-plus-aosp

6 years agoMerge "Camera: Use fallback key if the requested key returns null" into pi-dev
Justin Yun [Thu, 24 May 2018 18:54:36 +0000 (11:54 -0700)]
Merge "Camera: Use fallback key if the requested key returns null" into pi-dev
am: 062c050d01

Change-Id: If26bfe174dcc91e52ffae386041a9215c87316f8

6 years agoMerge "Merge "MediaPlayer: ensure that jni code returns after throwing exceptions...
Android Build Merger (Role) [Thu, 24 May 2018 18:50:26 +0000 (18:50 +0000)]
Merge "Merge "MediaPlayer: ensure that jni code returns after throwing exceptions." into pi-dev am: 1a9def3dc7" into pi-dev-plus-aosp

6 years agoMerge "MediaPlayer: ensure that jni code returns after throwing exceptions." into...
Dongwon Kang [Thu, 24 May 2018 18:50:00 +0000 (11:50 -0700)]
Merge "MediaPlayer: ensure that jni code returns after throwing exceptions." into pi-dev
am: 1a9def3dc7

Change-Id: I7ebee18631081dbd11dc54227c77d451358b8234

6 years agoMerge "Merge "Remove logging from RecentsOnboarding" into pi-dev am: ee9b570dce"...
Android Build Merger (Role) [Thu, 24 May 2018 18:45:53 +0000 (18:45 +0000)]
Merge "Merge "Remove logging from RecentsOnboarding" into pi-dev am: ee9b570dce" into pi-dev-plus-aosp

6 years agoMerge "Remove logging from RecentsOnboarding" into pi-dev
Tracy Zhou [Thu, 24 May 2018 18:45:32 +0000 (11:45 -0700)]
Merge "Remove logging from RecentsOnboarding" into pi-dev
am: ee9b570dce

Change-Id: I900357e6545ea873095cb1e29bdf21c5b60be4f0

6 years agoMerge "AAPT2: Accept density config as default"
Ryan Mitchell [Thu, 24 May 2018 18:42:22 +0000 (18:42 +0000)]
Merge "AAPT2: Accept density config as default"

6 years agoMerge "Merge "Fix per app GPS power usage." into pi-dev am: da4c54e9da" into pi-dev...
Android Build Merger (Role) [Thu, 24 May 2018 18:41:17 +0000 (18:41 +0000)]
Merge "Merge "Fix per app GPS power usage." into pi-dev am: da4c54e9da" into pi-dev-plus-aosp

6 years agoMerge "Fix per app GPS power usage." into pi-dev
Hui Yu [Thu, 24 May 2018 18:40:54 +0000 (11:40 -0700)]
Merge "Fix per app GPS power usage." into pi-dev
am: da4c54e9da

Change-Id: I16400dccbc2328548f93cf0fd285cd9be6e07351

6 years agoMerge "Remove TODO in statsd AnomalyTracker_test"
TreeHugger Robot [Thu, 24 May 2018 18:38:07 +0000 (18:38 +0000)]
Merge "Remove TODO in statsd AnomalyTracker_test"

6 years agoMerge "Merge "FixBug: Round corner gone when scroll to non-first item and drag to...
Android Build Merger (Role) [Thu, 24 May 2018 18:36:40 +0000 (18:36 +0000)]
Merge "Merge "FixBug: Round corner gone when scroll to non-first item and drag to close" into pi-dev am: d732ec697e" into pi-dev-plus-aosp

6 years agoMerge "FixBug: Round corner gone when scroll to non-first item and drag to close...
Arthur Hung [Thu, 24 May 2018 18:36:20 +0000 (11:36 -0700)]
Merge "FixBug: Round corner gone when scroll to non-first item and drag to close" into pi-dev
am: d732ec697e

Change-Id: Ibdb26abc0c52d3a3de5e80e49dee92809767d08b