- Apr 09, 2019
-
-
Adam He authored
Merge "Added documentation to note onDisconnected() should not make calls to their respective managers." into qt-dev
-
TreeHugger Robot authored
-
Xiangyu/Malcolm Chen authored
-
TreeHugger Robot authored
-
Winson Chung authored
-
Jorim Jaggi authored
-
Aaron Heuckroth authored
-
TreeHugger Robot authored
-
TreeHugger Robot authored
-
Narayan Kamath authored
-
Charles Chen authored
-
Jorim Jaggi authored
...as otherwise rounded corners don't work. Also, ensure that we only set rounded corners if a crop is set. Test: WindowAnimationSpecTest Test: Task switch animation Fixes: 129062310 Change-Id: I9fea6a520cccf1ccf2aea3f57a4ce0dda3852779
-
Chalard Jean authored
Cherry-pick from commit 415f523f, with small conflict resolution. Bug: 129510344 Test: m, boots, wifi connects, resolves DNS Change-Id: Idf24f42a86bbfcc89e3ea8cf50d1b705d72ac613 Merged-In: Idf24f42a86bbfcc89e3ea8cf50d1b705d72ac613 Merged-In: Ia08104f839ef37139a8761e2e625bb10c94c275f
-
Chalard Jean authored
Test: m Bug: 128803828 Change-Id: I3818eb8abb5a410663a6da633d5516cef4ecad8e (cherry picked from commit 45ff048d)
-
Matt Pietal authored
Set apps/targets to be visually disabled when in suspended state. Do not auto launch when the only app is suspended. Bug: 112553778 Test: Manually inspect colors on app suspension Change-Id: Ief9faba831c4f3676f02f84b0174b74d4103f940
-
Chiachang Wang authored
-
TreeHugger Robot authored
-
Lorenzo Colitti authored
-
TreeHugger Robot authored
-
TreeHugger Robot authored
-
TreeHugger Robot authored
-
TreeHugger Robot authored
-
paulhu authored
NetdService#getInstance() will get null object in WrappedConnectivityService constructor. Then pass this null INetd object to PermissionMonitor will case NPE in PermissionMonitor#sendPackagePermissionsToNetd() Bug: 128024100 Test: atest FrameworksNetTests Change-Id: Ia1c80f9600a19c4aaf3f3c1b497b355d96c49c8e Merged-In: I7f185e731db91c30a9b0f14aefbdbb067942190e Merged-In: Ic77ef73841266da487401ffd657ef63562b6fc1e (cherry picked from commit 7d215078)
-
Narayan Kamath authored
Required to test ContentResover#[get|put]Cache Bug: 127711435 Test: atest CtsContentTestCases Change-Id: I5eb72772a0a35897611dd6db95c68a2d2e971e9a
-
Lorenzo Colitti authored
-
Lorenzo Colitti authored
-
Chiachang Wang authored
From mainline perspective, we should use android flag api instead of using Settings. Thus, move the definitions into NetworkStack. Bug:120013793 Test: atest NetworkStackTests SettingsBackupTest Change-Id: I8e1fb5b47fff3bf624131ba1f5732daabd991e6d
-
Chalard Jean authored
Test: IpClientTest Bug: 128803828 Change-Id: I399b20ce29a385a74971b7a7248a48cb4d66deb6 (cherry picked from commit 3cab2906)
-
Charles Chen authored
This issue happened when we get null ActivityRecord. Add a null check to prevent. Also fix typo in ActivityStack. Test: atest ActivityRecordTest Fix: 129485624 Change-Id: I93b7dda1577b34f58fb5daed201404de4cfbad2e
-
Anil Admal authored
The gnss@2.0 HAL and the framework GNSS Location Provider code is updated in Q to not call the deprecated requestRouteToHost() method. However, devices upgrading to Q which are still using gnss@1.1 or earlier HAL must continued to be supported. Fixes: 121222025 Test: Tested with gnss@1.1 HAL and first API level P. The ConnectivityService log message "This method exists only for app backwards compatibility and must not be called by system services" is not present for devices with first API level P. Change-Id: I10199776ea413dc256dbf0771e6cb3eedb334495 Merged-In: Ifa60d8f2d60aba4c4e2894dc612c224d45e3992d Merged-In: Ifa4ec98d5c942522dfd569664f169fa841d495ed (cherry picked from commit 2eea7ac2)
-
Lorenzo Colitti authored
This commit reduces the flakiness of the testOpenAndCloseUdpEncapsulationSocket by retrying up to three times. Unfortunately, testing port-selected socket creation is racy against other applications. This helps to handle the same race condition as done in IpSecService#bindToRandomPort Bug: 128024100 Test: 200x runs of testOpenAndCloseUdpEncapsulationSocket Change-Id: I7e036ce821019dbac6c50899bd0894e89d2fe82a Merged-In: Idf040a67e53d9b9ec6e6c647ce24f8ada501d355 Merged-In: Iad9aea4b42cd8b31a5a2659bb9cb54dd1c64e8b7 (cherry picked from commit 614ab3dd)
-
Lorenzo Colitti authored
Test: treehugger Bug: 124354087 Bug: 128024100 Change-Id: I3048625a2507e70402ce376e7208f58cdf5ddfba Merged-In: I3d8cebec00dde7d0b61469f36887cd5afface043 Merged-In: I1fcb9ca292777fb017e9108a3e12cffba87e1985 (cherry picked from commit 2373c8a1)
-
Lorenzo Colitti authored
This test is too flaky to run in presubmits. Bug: 124354087 Test: atest InetDiagSocketTest Change-Id: I90bc52a6f5b92d634862e3464634dfdbd3cada6a Merged-In: Ic580b9261e0d556ec10f92ddffd8f2766e25f424 Merged-In: Ide5ac3f5316c4671b17fb9486ac56fc5feaf7b08 (cherry picked from commit fdc03bab)
-
Po-Chien Hsueh authored
Some changes to follow string review suggestions: - Simplify some messages. - Replace 'Reboot' with 'Restart'. - Notification action button order: 'Restart' button on the right. Bug: 129100345 Test: verified with test app Change-Id: I1ee97b0adbf74add68d3561fc647dc4923ee7237
-
Lorenzo Colitti authored
Since aosp/937885, mLaunchCaptivePortalAppBroadcastReceiver is nulled out, but not unregistered, when exiting MaybeNotifyState. This causes the BroadcastReceiver to be leaked because it is no longer unregistered when processing CMD_NETWORK_DISCONNECTED. Fix this by unregistering the receiver in MaybeNotifyState#exit. Also remove the unregister call in CMD_NETWORK_DISCONNECTED: it is no longer necessary, because StateMachine, before quitting, will call the exit method of the current state and all its parent states. Bug: 122164725 Test: atest FrameworksNetTests NetworkStackTests Change-Id: I447b3cfd3821dda19482ed962dd59ec61fc5fc9b Merged-In: I1db24fe05ada8b3a37a9a60aa568b6153bf51ad8 (cherry picked from commit 3a1c0ad3)
-
TreeHugger Robot authored
-
Philip P. Moltmann authored
* changes: Do not modify location perms on upgrade Only update permissions of one app
-
Remi NGUYEN VAN authored
-
TreeHugger Robot authored
-
TreeHugger Robot authored
-