summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | GPS: Fix another race condition in GPS HAL initializationMike Lockwood2010-10-101-28/+28
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BUG: 3082940 Change-Id: I0953882cb768aec608f754c3bc9ab41418eded97 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | | | | | Merge "Updated media playback controls, unlock screen, misc framework ↵Justin Ho2010-10-1029-0/+0
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | assets" into gingerbread
| * | | | | | | Updated media playback controls, unlock screen, misc framework assetsJustin Ho2010-10-1029-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ib7ee3d0ad81f2f27c33dcf698d5270b464d4430e
* | | | | | | | Merge "bug:3082865 don't use IN to construct sql to delete downloads" into ↵Vasu Nori2010-10-101-16/+11
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | gingerbread
| * | | | | | | | bug:3082865 don't use IN to construct sql to delete downloadsVasu Nori2010-10-101-16/+11
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DownloadManager should not use IN clause when constructing SQL to delete downloaded files Dowload app. Lexer code in Download app doesn't know how to parse it. Real fix is to fix Lexer. But seriously real fix is to get rid of this complexity - that I am planning for next version. also, the following 2 are identical, in terms of SQL performance WHERE _id IN (?, ?, ?) WHERE (_id = ? OR _id = ? OR _id = ?) Change-Id: Icca659a17c412247a193879e8d2f34e1b43ec9e5
* | | | | | | | Fallback to SharedPreferences$Editor.commit() when no apply() exists.Brad Fitzpatrick2010-10-103-9/+43
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gingerbread widened the SharedPreferences.Editor interface, adding an apply() method. Most people don't implement this interface themselves, but a couple apps do. A few spots in the core framework take a SharedPreferences[.Editor] from apps, which might be a pre-Gingerbread implementation without an apply() method. This patch makes sure we never depend on the presence of an apply() method, falling back to commit() if apply() isn't available. Change-Id: I32693ac9227a60b694526a26a30234fb17a40581
* | | | | | | Merge "Avoid pre-processing images when they won't be used" into gingerbreadXavier Ducrohet2010-10-101-1/+3
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | Avoid pre-processing images when they won't be usedAnthony Newnam2010-10-061-1/+3
| | |_|/ / / | |/| | | | | | | | | | | | | | | | Change-Id: I24db3645c399f66dc7cc0e85909ce34b68ff829e
* | | | | | Merge "Added more robust tracking and cancelation of events." into gingerbreadJeff Brown2010-10-1010-426/+518
|\ \ \ \ \ \ | | |_|_|_|/ | |/| | | |
| * | | | | Added more robust tracking and cancelation of events.Jeff Brown2010-10-1010-426/+518
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change fixes several issues where events would be dropped in the input dispatch pipeline in such a way that the dispatcher could not accurately track the state of the input device. Given more robust tracking, we can now also provide robust cancelation of input events in cases where an application might otherwise become out of sync with the event stream due to ANR, app switch, policy decisions, or forced focus transitions. Pruned some of the input dispatcher log output. Moved the responsibility for calling intercept*BeforeQueueing into the input dispatcher instead of the input reader and added support for early interception of injected events for events coming from trusted sources. This enables behaviors like injection of media keys while the screen is off, haptic feedback of injected virtual keys, so injected events become more "first class" in a way. Change-Id: Iec6ff1dd21e5f3c7feb80ea4feb5382bd090dbd9
* | | | | | Merge "Voice input replaces selected text." into gingerbreadGilles Debunne2010-10-101-13/+10
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | |
| * | | | | Voice input replaces selected text.Gilles Debunne2010-10-101-13/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 3068128 Hiding controllers no longer stops text selection. Change-Id: Ie00c99948b3a14ce8a4a2a93c064c0635cadc993
* | | | | | Merge "GPS: More HAL initialization cleanup" into gingerbreadMike Lockwood2010-10-101-9/+32
|\ \ \ \ \ \
| * | | | | | GPS: More HAL initialization cleanupMike Lockwood2010-10-101-9/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BUG: 3082940 Change-Id: Idd584ab8fe4512aae0769ecd1274c55d6ea2e5e7 Signed-off-by: Mike Lockwood <lockwood@google.com>
* | | | | | | Merge "Add some error-case logging." into gingerbreadWink Saville2010-10-101-16/+13
|\ \ \ \ \ \ \
| * | | | | | | Add some error-case logging.Robert Greenwalt2010-10-101-16/+13
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Turning off all debug logging is a good thing, but it leaves us blind when errors come in. bug:3075537 Change-Id: I8a4e7f2ce094574ec45cec268bdbc46449540c9f
* | | | | | | Merge "fix getmacaddress race condition (don't auto-merge)" into gingerbreadIrfan Sheriff2010-10-101-20/+4
|\ \ \ \ \ \ \
| * | | | | | | fix getmacaddress race condition (don't auto-merge)Irfan Sheriff2010-10-081-20/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getMacAddress wont go through if the wifi state is not enabled by the time the connection from the supplicant comes through. we now fetch the mac address right after a driver start. Bug: 3072163 Change-Id: I55943e6d618fd7c3170bc579697bc61d70fc8b86
* | | | | | | | DO NOT MERGE Set the cap at alpha to 80% of the total available.Mindy Pereira2010-10-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | No matter how much the user drags, the alpha like the height should not get greater than a max and that max is 80% of what is available in the image. Change-Id: I57d181d6ea685461a44ed3ee29f83a675bc07fbc
* | | | | | | | Merge "Fix startDtmf." into gingerbreadJohn Wang2010-10-101-1/+1
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
| * | | | | | | Fix startDtmf.John Wang2010-10-101-1/+1
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Call correct startDtmf() function. Bug: 3033030 Change-Id: Ia90311ac5d2e4b070a28533c865c81dc90326557
* | | | | | | Merge "Made paste work in ExtractEditText" into gingerbreadGilles Debunne2010-10-101-10/+2
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Made paste work in ExtractEditTextGilles Debunne2010-10-081-10/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 3064925 Instead of always passing the menu item to the original TextView, do that only for the 'Select word' option. More ExtractEditText magic, but this ZBB so... Change-Id: Ic4cb0526dbb9711e2f13a916b997f480307dcad1
* | | | | | | Merge "GPS: Do not call sGpsInterface->init() multiple times" into gingerbreadMike Lockwood2010-10-092-22/+29
|\ \ \ \ \ \ \
| * | | | | | | GPS: Do not call sGpsInterface->init() multiple timesMike Lockwood2010-10-092-22/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I5f2b55959bd67864168690c1fe619e55edc18268 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | | | | | | Merge "Do not release the wifi lock if the screen is off." into gingerbreadChung-yih Wang2010-10-081-1/+21
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Do not release the wifi lock if the screen is off.Chung-yih Wang2010-10-091-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We need to be able to receive calls if the device is able to reassociate with any AP later on. Change-Id: Ib7aafb98386bf250ed9b5ec0a5b519594efa1649
* | | | | | | | am 456fe3b3: add some pages to the sitemap file in an attempt to kick-start ↵Scott Main2010-10-081-0/+5
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | / | | |_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the build server so i can get a doc build Merge commit '456fe3b337ef82aaf90c6428ec5be07028fc7d15' into gingerbread * commit '456fe3b337ef82aaf90c6428ec5be07028fc7d15': add some pages to the sitemap file in an attempt to kick-start the build server so i can get a doc build
| * | | | | | add some pages to the sitemap file in an attempt to kick-start the build ↵Scott Main2010-10-081-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | server so i can get a doc build Change-Id: If1a33d5f5ee1f3b39c5592748e3d584e060b7278
* | | | | | | Merge "Other improvements to text cursor movement." into gingerbreadGilles Debunne2010-10-081-13/+24
|\ \ \ \ \ \ \
| * | | | | | | Other improvements to text cursor movement.Gilles Debunne2010-10-081-13/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Paste happened on pressed position instead of current cursor location when triggered by a long touch. Change-Id: I86900f2bbb93390d3efa756aeebb424c4ae7e19b
* | | | | | | | Merge "DO NOT MERGE Limit the height of the pull glow." into gingerbreadMindy Pereira2010-10-081-5/+6
|\ \ \ \ \ \ \ \
| * | | | | | | | DO NOT MERGE Limit the height of the pull glow.Mindy Pereira2010-10-081-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Event when the user keeps pulling, should NEVER get bigger than the max height (~2list items tall). Fixes b/3074337 Overscroll glow can be stretched indefinitely Change-Id: Ifc30d4c907d432faf9ee10ddc20bcc8f50b21f81
* | | | | | | | | am 50f86c65: docs: a few style adjustments to admin docScott Main2010-10-081-43/+81
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | / / / / / / | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Merge commit '50f86c65206072be0ca924f03b8d460365199bcd' into gingerbread * commit '50f86c65206072be0ca924f03b8d460365199bcd': docs: a few style adjustments to admin doc
| * | | | | | | docs: a few style adjustments to admin docScott Main2010-10-081-43/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I1ea2416f1f26835b1111aad65cc519dd8d56e099
* | | | | | | | am 2e5a22aa: docs: remove old "new" tags from side navScott Main2010-10-081-23/+22
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | / / / / / / | |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | Merge commit '2e5a22aa3cd9ca81c82e93044dca6f36c395746d' into gingerbread * commit '2e5a22aa3cd9ca81c82e93044dca6f36c395746d': docs: remove old "new" tags from side nav
| * | | | | | docs: remove old "new" tags from side navScott Main2010-10-081-23/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I9e5d1bf7688f5d30cd7b4c07b69b3f353dc67f92
* | | | | | | Merge "RTSP seeking is now asynchronous, MediaPlayer is not notified that ↵Andreas Huber2010-10-085-11/+87
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | the seek is complete until it actually is. Ignore seek requests on live streams." into gingerbread
| * | | | | | | RTSP seeking is now asynchronous, MediaPlayer is not notified that the seek ↵Andreas Huber2010-10-085-11/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is complete until it actually is. Ignore seek requests on live streams. Change-Id: Ie61230cd60dd6c682baf72529100369ad6291189 related-to-bug: 3073955
* | | | | | | | am 65e62f4f: docs: new web apps dev guidesScott Main2010-10-0811-69/+1021
|\ \ \ \ \ \ \ \ | | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit '65e62f4f908394fc469cf535fef7c16035a428a2' into gingerbread * commit '65e62f4f908394fc469cf535fef7c16035a428a2': docs: new web apps dev guides
| * | | | | | | docs: new web apps dev guidesScott Main2010-10-0811-69/+1021
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change-Id: I08b80de0544fec5d46a58e1c1b4c0e2ff1fd4fa2
* | | | | | | | Merge "Minor SharedPreference clean-up." into gingerbreadBrad Fitzpatrick2010-10-081-7/+9
|\ \ \ \ \ \ \ \
| * | | | | | | | Minor SharedPreference clean-up.Brad Fitzpatrick2010-10-081-7/+9
| | |_|_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make a member final, line up some comments, and also cache the expected stat size, not just the mtime. Change-Id: Ifcc37bd3ab99787280e506deb682200a16da512e
* | | | | | | | Merge "Fix retaining of granted permissions when updating of system app." ↵Dianne Hackborn2010-10-081-4/+9
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | | | | | | | | | | into gingerbread
| * | | | | | | Fix retaining of granted permissions when updating of system app.Dianne Hackborn2010-10-081-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Was broken when the app is using a shared user ID. Change-Id: I088334f6540889969ee4367fa502807ce3f94f6a
* | | | | | | | Merge "Maybe fix #3076572: phone process crashes in SipService, trying to ↵Dianne Hackborn2010-10-081-18/+22
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | get wifi lock" into gingerbread
| * | | | | | | | Maybe fix #3076572: phone process crashes in SipService, trying to get wifi lockDianne Hackborn2010-10-081-18/+22
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WifiService needs to keep the calling identity cleared while it is doing all of its internal work. Change-Id: I2bd720e26efcf5ad5839693307d61e51f0658ace
* | | | | | | | Merge "Update DownloadManager API to support bulk actions." into gingerbreadSteve Howard2010-10-082-28/+68
|\ \ \ \ \ \ \ \
| * | | | | | | | Update DownloadManager API to support bulk actions.Steve Howard2010-10-082-28/+68
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes querying by ID, removing and restarting downloads (the latter is not a public API). The methods all use varargs to support this without undue syntactic pain. Change-Id: I768005c539d2395cf26587d3a8c425cd01ad9cd2
* | | | | | | | Merge "TextView cursor and selection improvements." into gingerbreadGilles Debunne2010-10-081-28/+37
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |