Kenny Root
2daafa5af9
Merge "Remove lingering system app native libs in /data" into gingerbread
2010-10-05 14:04:26 -07:00
Jeff Brown
1a727bd085
Merge "Make secure views tolerate IME overlays." into gingerbread
2010-10-05 13:06:05 -07:00
Kenny Root
0f85f28b21
Merge "Get correct native library path on reinstall" into gingerbread
2010-10-05 12:48:46 -07:00
Dianne Hackborn
d39316d69e
Merge "DO NOT MERGE: Get rid of status bar's dim during night." into gingerbread
2010-10-05 12:48:40 -07:00
Mike Lockwood
5bf21bce37
Merge changes Ic5551c94,I0207f7f7 into gingerbread
...
* changes:
GPS: Clean up GPS API extension initialization in JNI code.
GPS: Add support for AGpsRilInterface.
2010-10-05 12:36:34 -07:00
Jeff Brown
35cf0e9854
Make secure views tolerate IME overlays.
...
Change-Id: I3cf09b9d91045f4d9c558b4aace482a7b0bbd3d8
2010-10-05 12:26:23 -07:00
Robert Greenwalt
3a6f070d32
Merge "Add supporting MCC=450(Korea)" into gingerbread
2010-10-05 11:46:12 -07:00
Brett Chabot
5e848fd6e8
Merge "Failing test cleanup." into gingerbread
2010-10-05 11:00:07 -07:00
Hung-ying Tyan
e1fd7ab671
Merge "SIP: add SERVER_UNREACHABLE error code." into gingerbread
2010-10-04 23:03:26 -07:00
Hung-ying Tyan
8ab7523752
Merge "SipService: supply PendingIntent when open a profile." into gingerbread
2010-10-04 23:02:55 -07:00
Dianne Hackborn
de5ce1388d
Merge "Make it easier to figure out whether an app can go on sd card." into gingerbread
2010-10-04 23:00:25 -07:00
Neal Nguyen
f39ed4b552
Merge "Fixing some flakiness of some DL Manager tests." into gingerbread
2010-10-04 21:07:37 -07:00
Mathias Agopian
46b489f3d4
Merge "fix [2835280] Add support for cancelling buffers to ANativeWindow" into gingerbread
2010-10-04 20:17:25 -07:00
Mathias Agopian
19957553cb
fix [2835280] Add support for cancelling buffers to ANativeWindow
...
There is a new ANativeWindow::cancelBuffer() API that can be used to
cancel any dequeued buffer, BEFORE it's been enqueued. The buffer is
returned to the list of availlable buffers. dequeue and cancel are not
mutually thread safe, they must be called from the same thread or
external synchronization must be used.
Change-Id: I86cc7985bace8b6a93ad2c75d2bef5c3c2cb4d61
2010-10-04 20:10:11 -07:00
Mathias Agopian
566b728c93
Merge "refactored screenshot code" into gingerbread
2010-10-04 20:04:42 -07:00
Mathias Agopian
7b8fda505e
Merge "new screencap command" into gingerbread
2010-10-04 20:04:37 -07:00
Adam Powell
e9a5488e1a
Merge "Fix bug 3061769" into gingerbread
2010-10-04 19:56:49 -07:00
Mathias Agopian
bfdc35dd45
Merge "fix [3008290] passion GB surface does not send surfaceChanged notification after size change." into gingerbread
2010-10-04 19:50:16 -07:00
Elliott Hughes
58db5f304d
Merge "Manually revert a single-line error inserted by OpenJDK." into gingerbread
2010-10-04 18:51:38 -07:00
James Dong
e044dfb1de
Merge "Fixed an issue where the reserved free space in the file writer was larger than intended" into gingerbread
2010-10-04 18:37:48 -07:00
Nick Pelly
377bf20f79
Merge "New API stubs: NdefMessage and NdefRecord." into gingerbread
2010-10-04 18:21:57 -07:00
Mathias Agopian
df85c455c3
refactored screenshot code
...
the core screenshot function now can capture the screen at any lower resolution
performing bilinear filtering.
we also now have some client code to interface with the screenshot service.
it's now possible to request a screenshot at a lower resolution.
Change-Id: I33689bba98507ab928d0898b21596d0d2fe4b953
2010-10-04 17:36:17 -07:00
Kenny Root
085996210c
Merge "Use pread() in ZipFileRO for Linux" into gingerbread
2010-10-04 17:08:26 -07:00
Gilles Debunne
250b2c9c16
Merge "DO NOT MERGE. Select word no longer selects spaces between words." into gingerbread
2010-10-04 16:42:40 -07:00
Scott Main
37c5dc049c
am 46ffeb21: docs: update homepage with more countries for market announcement
...
Merge commit '46ffeb218859a543540a70b3229a48d2d96cbb4a' into gingerbread
* commit '46ffeb218859a543540a70b3229a48d2d96cbb4a':
docs: update homepage with more countries for market announcement
2010-10-04 16:31:47 -07:00
Scott Main
72f5d5b949
am 6ef33cb3: docs: fix error in merge caused by Ibd81091fc6002a77ce43f553b63facec53f16a38
...
Merge commit '6ef33cb3b8c9ec8f6c2bb387d9a61affea64ec0d' into gingerbread
* commit '6ef33cb3b8c9ec8f6c2bb387d9a61affea64ec0d':
docs: fix error in merge caused by Ibd81091fc6002a77ce43f553b63facec53f16a38
2010-10-04 15:39:24 -07:00
James Dong
4576b09a11
Merge "Resilent media time stamp adjustment" into gingerbread
2010-10-04 15:35:40 -07:00
Gilles Debunne
721a4020a7
Merge "Removed icon in Alert dialog header." into gingerbread
2010-10-04 15:34:43 -07:00
Adam Powell
27a0b636ac
Merge "Fix bug 3052686 - ScrollView padding treated incorrectly" into gingerbread
2010-10-04 15:24:29 -07:00
Kenny Root
61ef747e0e
Use pread() in ZipFileRO for Linux
...
AssetManager instances are created by zygote and passed to all its
children so that they don't have to individually open
frameworks-res.apk. This creates a problem for determining the current
file offset when using lseek() on those files, because you can't
guarantee the cross-process locking of a mutex. Luckily, Linux
implements pread() to get around this suckiness.
The problem is that only Linux implements this, so we have to keep the
old locking for use on host builds with aapt and friends. aapt doesn't
have this same problem of sharing file descriptors across forked
processes, so we can keep the local AutoMutex to protect accesses of
those files.
Change-Id: Ibe9f11499a53fe345f50fbaea438815ec0fd363e
2010-10-04 15:17:19 -07:00
Dianne Hackborn
859d08676e
Merge "Fix issue #3041660 : Camera image flips upside down when rotating device" into gingerbread
2010-10-04 14:52:12 -07:00
Gilles Debunne
68a6951696
Merge "New green in assets for battery, download, upload" into gingerbread
2010-10-04 14:43:16 -07:00
Joe Onorato
87304310b0
Merge "implement the number bubbles on the status bar" into gingerbread
2010-10-04 14:41:38 -07:00
Scott Main
200c4ffccf
am ec80d7f3: docs: consistency fixit for the quickview boxes in the dev guide
...
Merge commit 'ec80d7f311b1a0899bb4caf5b380b07027e902d1' into gingerbread
* commit 'ec80d7f311b1a0899bb4caf5b380b07027e902d1':
docs: consistency fixit for the quickview boxes in the dev guide
2010-10-04 14:32:26 -07:00
Patrick Dubroy
68ef68f874
Merge "Fix 2-pixel offset unlock jog tab" into gingerbread
2010-10-04 14:20:39 -07:00
Brad Fitzpatrick
f67f0acc67
Merge "Document Bitmap.createScaledBitmap" into gingerbread
2010-10-04 12:21:14 -07:00
Adam Powell
550801abe4
Merge "Fix bug 3058324" into gingerbread
2010-10-04 12:15:34 -07:00
Gilles Debunne
a2540a0edd
Merge "Bug fixes in Text selection." into gingerbread
2010-10-04 12:06:10 -07:00
Dianne Hackborn
9b631857a8
Merge "Don't write settings multiple times when unmounting." into gingerbread
2010-10-04 11:58:09 -07:00
Chia-chi Yeh
fc4a64540c
Merge "RTP: Add a baseline echo suppressor." into gingerbread
2010-10-04 11:51:45 -07:00
Andreas Huber
4ffa384fbe
Merge "Make sure to finish the preparation phase even EOS occurs before we consider the cache to be completely filled up." into gingerbread
2010-10-04 11:45:56 -07:00
Andreas Huber
a4953b9f5d
Merge "Don't retrieve metadata unless necessary for ogg-vorbis ringtone auto-looping." into gingerbread
2010-10-04 11:20:21 -07:00
Dirk Dougherty
96bd7ceaef
am ba944ccd: Doc change: update screens support table and remove outdated density/size metrics.
...
Merge commit 'ba944ccda3d61ccbe6061277fcc50c96fe2643f1' into gingerbread
* commit 'ba944ccda3d61ccbe6061277fcc50c96fe2643f1':
Doc change: update screens support table and remove outdated density/size metrics.
2010-10-04 11:12:07 -07:00
Mindy Pereira
1da40fbd47
Merge "DO NOT MERGE. Fix logic for switching between overscroll and scroll modes." into gingerbread
2010-10-04 10:10:06 -07:00
Daisuke Miyakawa
255f7cb02a
Merge "Refrain warning when not appropriate. Do not merge" into gingerbread
2010-10-04 08:31:56 -07:00
Kenny Root
a2b0e61228
Merge "ZipFileRO: moar logging and wrap close" into gingerbread
2010-10-04 07:28:20 -07:00
Hung-ying Tyan
ae4bfa97ed
Merge "SIP: minor fixes." into gingerbread
2010-10-03 22:43:28 -07:00
Jeff Brown
e8914cec61
Merge "Wait for initial device scan to finish before updating config." into gingerbread
2010-10-01 19:01:11 -07:00
Jeff Brown
f1aa6a1d6c
Merge "Minor logging changes to input dispatcher to help with debugging." into gingerbread
2010-10-01 18:58:32 -07:00
Jeff Brown
1ad00e96fe
Wait for initial device scan to finish before updating config.
...
This change narrows the opportunity for a race condition setting the
resource Configuration while devices are being updated.
Change-Id: I58efa563f4129ab0fce7108511d16a99dff7e451
2010-10-01 18:55:43 -07:00