summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-10-07Merge "Ensure SurfaceView requests WM relayout when size changes." into ↵marshmallow-dr-devTim Murray
mnc-dr-dev
2015-10-07Merge "MediaActionSound: Fix video stop sound" into mnc-dr-devChien-Yu Chen
2015-10-07MediaActionSound: Fix video stop soundChien-Yu Chen
Bug: 24745252 Change-Id: I803679d52750e09c7fc7b881523becf9259b558b
2015-10-07am a636be6c: Camera: fix wrong FULL feature stringYin-Chia Yeh
* commit 'a636be6c9a8a9192f72a111c2b3084a226d37b7e': Camera: fix wrong FULL feature string
2015-10-07Ensure SurfaceView requests WM relayout when size changes.Robert Carr
In the case of scaled SurfaceViews with a fixed size. It is possible for the surface layout size to change without a change to the surface size or position. In this case we need to inform the window manager so it can update frames and scaling. This has presented in Camera and required workarounds such as changing the fixed surface size to trigger an update (leading to visual artifacts). Bug:23974105 Change-Id: I195aa0832907c32874b294101b56e198e853dce5 (cherry picked from commit a8fe43f09c0ed2119e55139a482f7f12fbe7d725)
2015-10-07Merge "ZenModeHelper: fix cross deadlock with AudioService" into mnc-dr-devEric Laurent
2015-10-06Camera: fix wrong FULL feature stringYin-Chia Yeh
Bug: 24678065 Change-Id: I2ca49565b919c87005d941863e22e3852a01a6c6
2015-10-06Merge "Ambient display now comes up immediately when a notification comes ↵Selim Cinek
in" into mnc-dr-dev
2015-10-06am 46684d2c: Merge "Add anydpi to the providing-resources docs" into mnc-devAdam Lesinski
* commit '46684d2caeef93f43be260d996e925ea6e4147ea': Add anydpi to the providing-resources docs
2015-10-05Merge "Add anydpi to the providing-resources docs" into mnc-devAdam Lesinski
2015-10-05Fix AudioService rotation helper threadJean-Michel Trivi
Fix a race condition where the wait index can be incremented inbetween the while() loop and the lock Fix when updateOrientation() is called: after the sleep, otherwise the last sleep is useless. Bug 24677424 Change-Id: I03770a0fc8af57f4696ebee7e9c9110e17c55a24
2015-10-05Add anydpi to the providing-resources docsAdam Lesinski
Change-Id: Ic108d9da2e39b9f8581311fe610a1959a24a732f
2015-10-05ZenModeHelper: fix cross deadlock with AudioServiceEric Laurent
Processing ZenModeHelper.setConfig() synchronously in ZenModeConditions.onConditionChanged() can cause a cross deadlock between ConditionProviders.mMutex and AudioService.mSettingsLock. Add a method to set Zen mode config asynchronously. Bug: 24528290. Change-Id: I9c1701ca6bef084527821175d84002b612241995
2015-10-05Import translations. DO NOT MERGEGeoff Mendal
Change-Id: I21cc5a0ce2710498f3aa76c904e653b90a14ecda Auto-generated-cl: translation import
2015-10-02Merge "Send POWER_HINT_INTERACTION on rotate." into mnc-dr-devTim Murray
2015-10-02Merge "Add minimum time for double tap gesture" into mnc-dr-devJorim Jaggi
2015-10-01AudioService: alternative way of handling device rotationJean-Michel Trivi
For devices that monitor orientation (primarily for channel assignment to stereo speakers): The com.android.server.policy.WindowOrientationListener API is more power efficient than simply monitoring the device's orientation. When supported, use it instead of android.view.OrientationEventListener. When WindowOrientationListener reports an orientation change, start a thread to poll the UI orientation, as its change may lag behind the observed rotation. Gradually increasing delays between polls are stored in a table. Bug 24415763 Change-Id: I69bf68da6107af24cd02a48961dd17ceab557816
2015-10-01Send POWER_HINT_INTERACTION on rotate.Tim Murray
Send a POWER_HINT_INTERACTION to improve redraw performance when the phone is rotated. bug 24583227 Change-Id: I1978f0dfb9a25c00ad4da5b44d10410ad7412001
2015-10-01Add minimum time for double tap gestureJorim Jaggi
Bug: 24304031 Change-Id: I15629d6b05175aea9b0d02571f6245966094f162
2015-10-01am 2813b0fa: Camera2: Update video stabilization API doc.Jianing Wei
* commit '2813b0fae99fed1096dc23c3899e223459a54cec': Camera2: Update video stabilization API doc.
2015-09-30Merge "Relax auto-launch checks for GET_CONTENT." into mnc-dr-devJeff Sharkey
2015-09-30Merge "Clean stale entries when deleting files." into mnc-dr-devJeff Sharkey
2015-09-30Import translations. DO NOT MERGEGeoff Mendal
Change-Id: I22e6ce4ec3dd122bef49b23a26c9bc2d76980068 Auto-generated-cl: translation import
2015-09-29Merge "Fix asymmetry in parceling/unparceling code for BatteryStats summary" ↵Adam Lesinski
into mnc-dr-dev
2015-09-29Camera2: Update video stabilization API doc.Jianing Wei
Bug: 23353979 Change-Id: I781006d1b6ebbdf522ebbf6acc35b2062aff76b6
2015-09-29Relax auto-launch checks for GET_CONTENT.Jeff Sharkey
When a developer wraps an intent with Intent.createChooser(), they're indicating that the user should always be prompted, instead of using any "always use" defaults. A recent CL changed the chooser behavior to ensure that UI is always shown in the case where there is only one match. However, this caused us to start prompting for the GET_CONTENT intent, for which there is only ever one DocumentsUI system app. Since that app delivers on the createChooser() contract described above, we're okay automatically launching it. Bug: 24464358 Change-Id: I0279d3343479c134a35f41ddf3cb4204d0ae6a90
2015-09-29Ambient display now comes up immediately when a notification comes inSelim Cinek
Previously there was always a 1s delay which could even become a 5-8s delay if the Alarm was not delivered in time. Bug: 24355754 Change-Id: I1625c69719eee81403a1fcce1358d4d6c9fcf3e9
2015-09-28Merge "Fix jank: Don't write lockout deadline if not needed" into mnc-dr-devBill Rassieur
2015-09-28Fix jank: Don't write lockout deadline if not neededJorim Jaggi
In the longterm, we should move these synchronous writes off the main thread, but in the short term, avoiding an unnecessary write is good enough for the main case. Bug: 24471234 Change-Id: Id996ff29e61410cd077760a06d7868a413ae88da
2015-09-28Fix asymmetry in parceling/unparceling code for BatteryStats summaryAdam Lesinski
Bug:24434303 Change-Id: I638979e54076004860035396738f6a1281e26c20
2015-09-28am f360bbca: Merge "Bug: 24112165 Update docs for protection level of ↵Billy Lau
CHANGE_NETWORK_STATE" into mnc-dev * commit 'f360bbca969f60ee968240d22bc0b1f1e5e17218': Bug: 24112165 Update docs for protection level of CHANGE_NETWORK_STATE
2015-09-28Merge "Bug: 24112165 Update docs for protection level of ↵Billy Lau
CHANGE_NETWORK_STATE" into mnc-dev
2015-09-27Bump BatteryStats versionAdam Lesinski
Bug:24434303 Change-Id: I697deb30c211c77c36cdd810259507f965f3b93b
2015-09-27Merge "Import translations. DO NOT MERGE" into mnc-dr-devBaligh Uddin
2015-09-26Import translations. DO NOT MERGEBaligh Uddin
Change-Id: Ibaf19bf407113bcedc96d367a80b3a7b1999f7c5 Auto-generated-cl: translation import
2015-09-26Import translations. DO NOT MERGEBaligh Uddin
Change-Id: I349825f72d9e929562abd599816a4ae428112ea6 Auto-generated-cl: translation import
2015-09-25Merge "Show charging speed when time to full is available" into mnc-dr-devAdrian Roos
2015-09-25Show charging speed when time to full is availableAdrian Roos
Only shows if translation is available, follow-up I3e883eeca002e86d4df30c2b238e18bd63bbddea to show in all locales. Bug: 24167496 Change-Id: I667cde69e5d5f8aec8ac9fd105bbfb7e118ced64
2015-09-25Clean stale entries when deleting files.Jeff Sharkey
When deleting files directly from external storage devices, remove any matching entries from MediaStore so we don't end up showing stale entries to clients, such as MTP/PTP. Also handles the case where an entire directory is deleted. Bug: 24045921 Change-Id: I802470fa1aa03e0bec147ea113f1a49e26a0f3f9
2015-09-25Merge "Give the DhcpClient alarm broadcasts foreground priority." into ↵Ian Pedowitz
mnc-dr-dev
2015-09-25Merge "Do not issue config change command when not needed" into mnc-dr-devJorim Jaggi
2015-09-25Merge "AudioService: cleanup sco audio mode upon disconnection." into mnc-dr-devPankaj Kanwar
2015-09-25Give the DhcpClient alarm broadcasts foreground priority.Lorenzo Colitti
Bug: 24265658 Bug: 24224067 Change-Id: I375097e7957643efb4bc0bb81318b13d9b9c82c1
2015-09-25Merge "Import translations. DO NOT MERGE" into mnc-dr-devBaligh Uddin
2015-09-25Merge "Import translations. DO NOT MERGE" into mnc-dr-devBaligh Uddin
2015-09-25Merge "Import translations. DO NOT MERGE" into mnc-dr-devBaligh Uddin
2015-09-25Merge "Import translations. DO NOT MERGE" into mnc-dr-devBaligh Uddin
2015-09-24Import translations. DO NOT MERGEBaligh Uddin
Change-Id: Iac1fe89a00d3f4e30b20e8f07c48a0845ce41d81 Auto-generated-cl: translation import
2015-09-24AudioService: cleanup sco audio mode upon disconnection.Eric Laurent
Clean up SCO forced usage and A2DP suspend state upon SCO device or profile disconnection. This is in case the Bluetooth Headset service does not do it. Bug: 24316765. Change-Id: Ifc0305607c186be49b2eb42b7868647292e56137
2015-09-24Import translations. DO NOT MERGEBaligh Uddin
Change-Id: I50eeba5466bb054212dc51f8a8d1b5b76f56a31d Auto-generated-cl: translation import