summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge "Do not support still image capture mode for timelapse video recording"James Dong2011-07-2510-637/+79
|\
| * Do not support still image capture mode for timelapse video recordingJames Dong2011-07-2410-637/+79
| | | | | | | | | | | | related-to-bug: 4973779 Change-Id: Ica665217ab10247b2242acc4e93d4fe9f83e3f45
* | Merge "Fixing old bug with AdapterViewFlipper"Adam Cohen2011-07-251-6/+5
|\ \
| * | Fixing old bug with AdapterViewFlipperAdam Cohen2011-07-221-6/+5
| | | | | | | | | | | | Change-Id: I3eda7f2451aaf8c75dd38d6d68fdcc04c03d2ee6
* | | Merge "Fix for http://b/issue?id=5064532"Philip Milne2011-07-255-223/+181
|\ \ \
| * | | Fix for http://b/issue?id=5064532Philip Milne2011-07-255-223/+181
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5064532: GridLayout with initial "stretchy" row and "gone" view in last row doesn't stretch properly Also: . Infer stretchibility from whether or not gravity is defined. . Make algorithms for handling flexibility within cell groups consistent with those acting between cells groups (via constraint system). . Hide and deprecate methods taking flexibility argument. . Hide and deprecate CAN_STRETCH constant. Both deprecated features will be removed after references are removed from platform. Change-Id: Iabf2bf19f35cf30b8ec49c99b49a0550fd495125
* | | | Merge "Unifying swipe behavior for Recents and Notifications"Michael Jurka2011-07-256-483/+478
|\ \ \ \
| * | | | Unifying swipe behavior for Recents and NotificationsMichael Jurka2011-07-236-483/+478
| | | | | | | | | | | | | | | Change-Id: Ibdbb7cc4ac2bcfcf6d6353a218b13c23caeca5b9
* | | | | Merge "Change user 0 directory back for compatibility"Kenny Root2011-07-251-1/+10
|\ \ \ \ \
| * | | | | Change user 0 directory back for compatibilityKenny Root2011-07-251-1/+10
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The PackageManagerTests aren't designed for multiple users yet, so they fail. Since multiple users aren't supported yet, just change the default data directory for user 0 back to how it was previously. This fixes the existing tests and doesn't get anyone's hopes up since they won't see /data/user/0/pacakge when we don't support multiple users yet. Bug: 4380006 Change-Id: Iedcc3115b000759c0013ba6878e13cd2358897da
* | | | | Merge "Stop using charAt for Signatures"Kenny Root2011-07-251-9/+16
|\ \ \ \ \
| * | | | | Stop using charAt for SignaturesKenny Root2011-07-221-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Simply getting the byte array and operating on that instead of using String.charAt() repeatedly speeds up Signature initializer calls during bootup from 150ms to 9ms (1700% faster). Change-Id: I85ef17ef63477927e0181d5f49a1d521b7b0d98b
* | | | | | Merge "AudioFlinger: add dump of audio pre processing."Eric Laurent2011-07-252-19/+21
|\ \ \ \ \ \
| * | | | | | AudioFlinger: add dump of audio pre processing.Eric Laurent2011-07-242-19/+21
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dump of media.audio_flinger service was only listing effects on output threads. Moved the dump of effect chains from PlaybackThread to ThreadBase class so that pre processings on RecordThread are also listed. Change-Id: If8bc74023c12b9c2371f1b300743b156ceca7b87
* | | | | | Merge "TouchExplorer long press not working and activation tap not ↵Svetoslav Ganov2011-07-251-74/+92
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | respecting distance slop."
| * | | | | | TouchExplorer long press not working and activation tap not respecting ↵Svetoslav Ganov2011-07-241-74/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | distance slop. 1. The first problem is manifested on Prime. Apparently the Prime screen driver is very aggresive in filtering move events that origin from almost the same location. Hence, the framework doesn't see a constant stream of events. However, the TouchExplorer implementation was assuming a constant event stream to detect long press. Refactored the code such that no assumptions for the event stream are made. 2. Touch exploring an item and then tapping far away from that item was activating it, hence not respecting the distance slop. This was due to incorrect check of the latter. bug:5070917 Change-Id: I3627a2feeb3712133f58f8f8f1ab7a2ec50cdc9a
* | | | | | | Merge "Touch exploration state set to clients asynchronously and depended on ↵Svetoslav Ganov2011-07-2512-100/+121
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | talking service being enabled."
| * | | | | | | Touch exploration state set to clients asynchronously and depended on ↵Svetoslav Ganov2011-07-2212-100/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | talking service being enabled. 1. Upon registration of an accessibility client the latter received only the accessiiblity state and waiting for the touch exploration state to be sent by the system in async manner. This led the very first check of touch exploration state is checked a wrong value to be reported. Now a state of the accessibility layer is returned to the client upon registration. 2. Removing the dependency on talking accessibility service to be enabled for getting into touch exploration mode. What if the user wants to use an accessibility service that shows a dialog with the text of the touched view? bug:5051546 Change-Id: Ib377babb3f560929ee73bd3d8b0d277341ba23f7
* | | | | | | | Merge "Implement CollapsibleActionView on SearchView."Amith Yamasani2011-07-252-8/+43
|\ \ \ \ \ \ \ \
| * | | | | | | | Implement CollapsibleActionView on SearchView.Amith Yamasani2011-07-222-8/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically handle expanding and collapsing in an ActionBar using the new callback for Collapsible ActionViews. Also clear the query text when collapsing. Make sure that the 'x' doesn't show when in expanded mode with no text. Change-Id: I7cba009c7cc9a1c264ec11c76315353cbde55c6c
* | | | | | | | | Merge "Preventing screenshots when waking from sleep."Winson Chung2011-07-253-28/+32
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Preventing screenshots when waking from sleep.Winson Chung2011-07-253-28/+32
| | |_|_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Fixing crash in SystemUI when trying to access external storage while it is not mounted Change-Id: I3d9a05c155b83a2cc39915caebad4b7016025d09
* | | | | | | | | Merge "SurfaceTexture: enable RGB external textures"Jamie Gennis2011-07-253-47/+20
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | SurfaceTexture: enable RGB external texturesJamie Gennis2011-07-223-47/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change removes support for conditionally using the GL_TEXTURE_2D target for SurfaceTexture textures with RGB buffers. It also enables and fixes the RGB-based SurfaceTexture tests. Change-Id: I9a251a981cf66af6b048b2e4c3fe7231e4774f4d
* | | | | | | | | | Merge "Switch state text not added to accessibility events."Svetoslav Ganov2011-07-251-0/+8
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Switch state text not added to accessibility events.Svetoslav Ganov2011-07-231-0/+8
| | |_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Adding the text to the events now. bug:5071053 Change-Id: If36afb1f5327720fc002b8c49e5d7b00c5f189f7
* | | | | | | | | | Merge "Keep Bluetooth module hot to quickly swith it on/off"Matthew Xie2011-07-254-193/+646
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Keep Bluetooth module hot to quickly swith it on/offMatthew Xie2011-07-254-193/+646
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add BluetoothAdapterStateMachine to maintain a inter state machine other than the public BluetoothAdapter states. This is a improvement to BluetoothService code. 2 internal state are added, LoadingFirmware and FirmwareLoaded to place the Bluetooth module in a ready-to-switch-on state so that it can be quickly switched on to have a better user experience bug 5021787 Change-Id: Ia352e88cba509d9e98c900f85e7479f8cee1de5e
* | | | | | | | | | | Merge "Fix bug 4211099 channel constants and 7.1 mask"Jean-Michel Trivi2011-07-251-1/+27
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Fix bug 4211099 channel constants and 7.1 maskJean-Michel Trivi2011-07-241-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add definitions for the side and elevated channels. Add new (correct) definition for 7.1 mask which uses the side channels rather than the front half-pan channels. Change-Id: I13d93f99f3b453ce2ab5fdc2da66629ed7f337ef
* | | | | | | | | | | | Merge "Fix bug 5060033 - No text-editing toolbar when in a dialog"Adam Powell2011-07-254-1/+55
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Fix bug 5060033 - No text-editing toolbar when in a dialogAdam Powell2011-07-224-1/+55
| | |_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix a bug that caused standalone action mode bars to not appear properly or account for system insets such as the status bar. Add public API to View to toggle the fitsSystemWindows attribute. Change-Id: I5d7669425b930c5d23f9df26a45f544b706e8242
* | | | | | | | | | | | Merge "Add support for creating a Surface from a a SurfaceTexture."Ted Bonkenburg2011-07-255-22/+124
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Add support for creating a Surface from a a SurfaceTexture.Ted Bonkenburg2011-07-225-22/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Surface is already using SurfaceTexture internally and it is parcelable. This is intended to replace and phase out ParcelSurfaceTexture in favor of creating a new Surface.java object from an existing SurfaceTexture. Change-Id: I8e2dd86614523da6abed6403e1d705a68fa19fdf
* | | | | | | | | | | | | Merge "Add a System.Secure setting for the Autofill server URL."Ben Murdoch2011-07-252-3/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Add a System.Secure setting for the Autofill server URL.Ben Murdoch2011-07-212-3/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Autofill server is now configured as a system setting. Add that setting and a method to be called over JNI from the chrome stack to retrieve it. See also external/chromium change I3a22ae42402f52207eee2d0d9df64700cb7c9f45 Bug: 4515820 Change-Id: I0aa85c5bef834b1120baaabdc2dd2e4e607a63b6
* | | | | | | | | | | | | | Merge "Fix for Autofill calling WebView.getSettings on background thread."Ben Murdoch2011-07-251-2/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Fix for Autofill calling WebView.getSettings on background thread.Ben Murdoch2011-07-251-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Autofill was reading the WebView's WebSettings on a background thread. Move it to the UI thread to conform to the WebView API and get rid of a Strict Mode violation. Bug: 5072283 Change-Id: Ib0ac60697f1e629ac1ef1743545b5cf0ac2cf52a
* | | | | | | | | | | | | | | Merge "Add IS_READ column in call log and voicemail providers."Flavio Lerda2011-07-252-0/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Add IS_READ column in call log and voicemail providers.Flavio Lerda2011-07-252-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initially we had exposed NEW in the voicemail provider instead of the IS_READ field. However, NEW is already used in the call log to represent a missed call for which a notification needs to be shown to the user. On the other hand, voicemail need both be shown in a notification and retain their own read/unread state, which is determined by whether the user has opened the details of the voicemail. This change introduces the IS_READ field for voicemails and exposes it also via the call log content provider. The NEW column in the voicemail content provider will be removed in a follow-up. Bug: 5036195 Change-Id: I2f8c04685a82cbf77f4778cf057ff62c7da1256a
* | | | | | | | | | | | | | | [step4] Change service interfacesatok2011-07-252-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Iaf86065a2a7f075c670ebdaa60a33a815dcb8113
* | | | | | | | | | | | | | | Merge "[Step 2] Add apis for spell checker settings"satok2011-07-245-0/+57
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | [Step 2] Add apis for spell checker settingssatok2011-07-255-0/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 5057977 Change-Id: I4617b7f1487349c5de385e7392dbc39c69fa2ebc
* | | | | | | | | | | | | | | | Merge "Introduce param/column for group count"Daisuke Miyakawa2011-07-241-0/+26
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Introduce param/column for group countDaisuke Miyakawa2011-07-241-0/+26
| | |_|_|_|_|/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 5039532 Change-Id: Ibc604770cb61ca9fd92280e58f1cd1bbf30c216a
* | | | | | | | | | | | | | | | Merge "Fix interface notification race"Irfan Sheriff2011-07-241-6/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / |/| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Fix interface notification raceIrfan Sheriff2011-07-241-6/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In one use case, I see that if we go straight from wifi client mode to tethering operation, the interface change notifications are reported in an order that causes to enter tethered state without actually tethering through connectivity service. It is because an interface down notification (from wifi going down) comes after we have started soft ap and we think we have tethered after calling startTethering and switch to Tethered state Instead, we should make sure tethering has started before going to Tethered state. Change-Id: Iba7e8fab0feeb5637d40938862a8638871df8b02
* | | | | | | | | | | | | | | | Merge "Do not wait forever for output buffers in OMXCodec.cpp and error out ↵James Dong2011-07-242-10/+24
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in case time out happens"
| * | | | | | | | | | | | | | | Do not wait forever for output buffers in OMXCodec.cpp and error out in case ↵James Dong2011-07-152-10/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | time out happens o Deal with vendor codec hang bug Change-Id: Ic8449afd43045f09a9e0bd3d1be9a320e59ccabe
* | | | | | | | | | | | | | | | Merge "QueryCodecs() signature change"Jean-Michel Trivi2011-07-243-1/+15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \