OSDN Git Service

android-x86/frameworks-native.git
13 years agoMerge "VPN: add MTU support."
Chia-chi Yeh [Mon, 13 Jun 2011 22:08:43 +0000 (15:08 -0700)]
Merge "VPN: add MTU support."

13 years agoMerge changes Ic9186db2,Id5a7cdff
Jamie Gennis [Mon, 13 Jun 2011 21:48:11 +0000 (14:48 -0700)]
Merge changes Ic9186db2,Id5a7cdff

* changes:
  SurfaceTexture: disable a deadlocking test.
  SurfaceTexture: add a pixel tolerance to the tests.

13 years agoMerge "VPN: use ParcelFileDescriptor.adoptFd() instead of doing it in JNI."
Chia-chi Yeh [Mon, 13 Jun 2011 21:35:12 +0000 (14:35 -0700)]
Merge "VPN: use ParcelFileDescriptor.adoptFd() instead of doing it in JNI."

13 years agoMerge "Final polish of the interrogation feature."
Svetoslav Ganov [Mon, 13 Jun 2011 21:30:30 +0000 (14:30 -0700)]
Merge "Final polish of the interrogation feature."

13 years agoMerge "Remove @hide on SyncColumns, make them protected"
RoboErik [Mon, 13 Jun 2011 20:59:38 +0000 (13:59 -0700)]
Merge "Remove @hide on SyncColumns, make them protected"

13 years agoSurfaceTexture: disable a deadlocking test.
Jamie Gennis [Mon, 13 Jun 2011 20:43:51 +0000 (13:43 -0700)]
SurfaceTexture: disable a deadlocking test.

This change disables the UpdateTexImageAfterFrameFinishedWorks test
because it's currently causing deadlocks on some devices.

Change-Id: Ic9186db207e8d656f3af5d86fa138c7d96393c55

13 years agoSurfaceTexture: add a pixel tolerance to the tests.
Jamie Gennis [Mon, 13 Jun 2011 20:41:01 +0000 (13:41 -0700)]
SurfaceTexture: add a pixel tolerance to the tests.

This change adds a default tolerance of 2 to all the pixel value checks
in the SurfaceTexture tests.

Change-Id: Id5a7cdffdfae16076e2daf4964a3326105b5ae2c

13 years agoMerge "Make interfaces protected so they get included in api"
RoboErik [Mon, 13 Jun 2011 20:32:17 +0000 (13:32 -0700)]
Merge "Make interfaces protected so they get included in api"

13 years agoMerge "libutils: add a binary blob cache implementation."
Jamie Gennis [Mon, 13 Jun 2011 19:32:46 +0000 (12:32 -0700)]
Merge "libutils: add a binary blob cache implementation."

13 years agoMerge "Support for setting the NfcA transceive timeout (API)."
Martijn Coenen [Mon, 13 Jun 2011 19:19:01 +0000 (12:19 -0700)]
Merge "Support for setting the NfcA transceive timeout (API)."

13 years agoMerge "Update Configuration for renaming and fixes"
Fabrice Di Meglio [Mon, 13 Jun 2011 18:43:12 +0000 (11:43 -0700)]
Merge "Update Configuration for renaming and fixes"

13 years agoMerge changes I56779420,I044e44e1,Ic5adfa29,Ied541ab8
Jamie Gennis [Mon, 13 Jun 2011 18:14:57 +0000 (11:14 -0700)]
Merge changes I56779420,I044e44e1,Ic5adfa29,Ied541ab8

* changes:
  SurfaceTexture: add some GL->GL tests.
  SurfaceTexture: fix up a comment.
  SurfaceTexture: add getTransformMatrix tests.
  SurfaceTexture: fix a getTransformMatrix crash.

13 years agoMerge "Bugfix for GridLayout assuming that the x value of last column index is maxima...
Philip Milne [Mon, 13 Jun 2011 18:13:09 +0000 (11:13 -0700)]
Merge "Bugfix for GridLayout assuming that the x value of last column index is maximal. This is not the case when column indexes are defined incorrectly and GridLayout should still work in this case."

13 years agoMerge "Tweaks for webview snap"
John Reck [Mon, 13 Jun 2011 18:12:03 +0000 (11:12 -0700)]
Merge "Tweaks for webview snap"

13 years agoMerge "Fix driver start/stop handling"
Irfan Sheriff [Mon, 13 Jun 2011 18:10:57 +0000 (11:10 -0700)]
Merge "Fix driver start/stop handling"

13 years agoMerge "Fix a NPE if the Chrome Client is not setup"
Teng-Hui Zhu [Mon, 13 Jun 2011 18:07:38 +0000 (11:07 -0700)]
Merge "Fix a NPE if the Chrome Client is not setup"

13 years agoSurfaceTexture: add some GL->GL tests.
Jamie Gennis [Wed, 8 Jun 2011 16:40:45 +0000 (09:40 -0700)]
SurfaceTexture: add some GL->GL tests.

This change adds some tests to verify streaming images from one GL
thread to another via SurfaceTexture.  Currently the tests do not
validate the correctness of the streamed images, but rather simply
verify that this streaming does not cause a deadlock.  3 of the 4 tests
are currently disabled because they do cause deadlocks on some devices.

Change-Id: I5677942053190063b97f370dba96c116711bc3bb

13 years agoSurfaceTexture: fix up a comment.
Jamie Gennis [Sun, 12 Jun 2011 21:11:39 +0000 (14:11 -0700)]
SurfaceTexture: fix up a comment.

Change-Id: I044e44e17319e08af657a7ec9fa39100876fe862

13 years agoSurfaceTexture: add getTransformMatrix tests.
Jamie Gennis [Tue, 7 Jun 2011 22:23:23 +0000 (15:23 -0700)]
SurfaceTexture: add getTransformMatrix tests.

This change adds a test verifying that with no transform set on the
SurfaceTextureClient, the SurfaceTexture will return an identity
transform matrix.  It also verifies this same effect in the presence of
an additional call to native_window_set_buffer_count just before the
call to getTransformMatrix.

Bug: 4490420
Change-Id: Ic5adfa29b5696cc2b451433834e3758ef20c5edd

13 years agoSurfaceTexture: fix a getTransformMatrix crash.
Jamie Gennis [Mon, 13 Jun 2011 00:03:06 +0000 (17:03 -0700)]
SurfaceTexture: fix a getTransformMatrix crash.

This change moves the computation of the transform matrix out of
getTransformMatrix and instead performs the computation when
updateTexImage gets called.  This is needed in order for
getTransformMatrix to succeed even if the buffers have been freed (e.g.
by changing the buffer count) because the computation depends upon the
properties of the current GraphicBuffer.

Change-Id: Ied541ab8747b7ad604f862717135f9a16a816be9
Bug: 4490420

13 years agoMerge "Open up setKeyManager/setTrustManager."
Ben Komalo [Mon, 13 Jun 2011 17:32:26 +0000 (10:32 -0700)]
Merge "Open up setKeyManager/setTrustManager."

13 years agoMerge "Remove redundant memory barrier"
Glenn Kasten [Mon, 13 Jun 2011 17:30:29 +0000 (10:30 -0700)]
Merge "Remove redundant memory barrier"

13 years agoMerge "Use the new animated notification layout on tablets."
Daniel Sandler [Mon, 13 Jun 2011 14:30:48 +0000 (07:30 -0700)]
Merge "Use the new animated notification layout on tablets."

13 years agoMerge "Rebuilt notification list using a new custom layout."
Daniel Sandler [Mon, 13 Jun 2011 14:29:39 +0000 (07:29 -0700)]
Merge "Rebuilt notification list using a new custom layout."

13 years agoMerge "Fix the issue of onNetwork in UI thread."
repo sync [Mon, 13 Jun 2011 10:09:27 +0000 (03:09 -0700)]
Merge "Fix the issue of onNetwork in UI thread."

13 years agoMerge "Made VoicemailContract classes non-instantiable."
Debashish Chatterjee [Mon, 13 Jun 2011 09:10:32 +0000 (02:10 -0700)]
Merge "Made VoicemailContract classes non-instantiable."

13 years agoMerge "Fix test-related build breakage."
Jeff Sharkey [Mon, 13 Jun 2011 07:15:15 +0000 (00:15 -0700)]
Merge "Fix test-related build breakage."

13 years agoMerge "External mutation of full NetworkPolicy set."
Jeff Sharkey [Mon, 13 Jun 2011 06:24:50 +0000 (23:24 -0700)]
Merge "External mutation of full NetworkPolicy set."

13 years agoMerge "Ensure the RemoteViewsAdapter cleans up its HandlerThread."
Jeff Brown [Sun, 12 Jun 2011 22:25:14 +0000 (15:25 -0700)]
Merge "Ensure the RemoteViewsAdapter cleans up its HandlerThread."

13 years agoMerge "Move data cycle methods to framework object."
Jeff Sharkey [Sat, 11 Jun 2011 02:47:31 +0000 (19:47 -0700)]
Merge "Move data cycle methods to framework object."

13 years agoMerge "Interface-level network policy, persist policies."
Jeff Sharkey [Sat, 11 Jun 2011 02:41:33 +0000 (19:41 -0700)]
Merge "Interface-level network policy, persist policies."

13 years agoMerge "resolved conflicts for merge of ed1a9c77 to master"
Dianne Hackborn [Sat, 11 Jun 2011 02:24:49 +0000 (19:24 -0700)]
Merge "resolved conflicts for merge of ed1a9c77 to master"

13 years agoresolved conflicts for merge of ed1a9c77 to master
Dianne Hackborn [Sat, 11 Jun 2011 02:23:49 +0000 (19:23 -0700)]
resolved conflicts for merge of ed1a9c77 to master

Change-Id: I0ecf8ca6deaee165eea3cc9012f8ae139f52ea0c

13 years agoMerge "Optimize StrictMode activity instance count check."
Jeff Brown [Sat, 11 Jun 2011 02:01:11 +0000 (19:01 -0700)]
Merge "Optimize StrictMode activity instance count check."

13 years agoMerge "Always clear the Message when recycled."
Jeff Brown [Sat, 11 Jun 2011 02:00:28 +0000 (19:00 -0700)]
Merge "Always clear the Message when recycled."

13 years agoMerge "Optimize orientation changes."
Jeff Brown [Sat, 11 Jun 2011 01:59:21 +0000 (18:59 -0700)]
Merge "Optimize orientation changes."

13 years agoMerge "Make orientation changes happen sooner."
Jeff Brown [Sat, 11 Jun 2011 01:58:46 +0000 (18:58 -0700)]
Merge "Make orientation changes happen sooner."

13 years agoam fc441bff: am fd63814a: Merge "Fix some problems with moving in and out of detached...
Dianne Hackborn [Sat, 11 Jun 2011 01:42:12 +0000 (18:42 -0700)]
am fc441bff: am fd63814a: Merge "Fix some problems with moving in and out of detached state." into honeycomb-mr2

* commit 'fc441bfff9eb68be08eb922ea05c78c5d6fba27a':
  Fix some problems with moving in and out of detached state.

13 years agoam fd63814a: Merge "Fix some problems with moving in and out of detached state."...
Dianne Hackborn [Sat, 11 Jun 2011 01:39:48 +0000 (18:39 -0700)]
am fd63814a: Merge "Fix some problems with moving in and out of detached state." into honeycomb-mr2

* commit 'fd63814abe8e81d5e1e0eb75b5a5a18034e9b4c6':
  Fix some problems with moving in and out of detached state.

13 years agoMerge "Fix some problems with moving in and out of detached state." into honeycomb-mr2
Dianne Hackborn [Sat, 11 Jun 2011 01:37:22 +0000 (18:37 -0700)]
Merge "Fix some problems with moving in and out of detached state." into honeycomb-mr2

13 years agoMerge "Refactor BiDiTest unit tests app"
Fabrice Di Meglio [Sat, 11 Jun 2011 01:22:55 +0000 (18:22 -0700)]
Merge "Refactor BiDiTest unit tests app"

13 years agoam db26be1f: am 5fe24ec7: am 8daefb9c: Fix layout issue on table when device thinks...
Jim Miller [Sat, 11 Jun 2011 00:47:44 +0000 (17:47 -0700)]
am db26be1f: am 5fe24ec7: am 8daefb9c: Fix layout issue on table when device thinks there\'s a SIM.

* commit 'db26be1fa63e838b83e060a5e8a102321b9385fb':
  Fix layout issue on table when device thinks there's a SIM.

13 years agoam 5fe24ec7: am 8daefb9c: Fix layout issue on table when device thinks there\'s a...
Jim Miller [Sat, 11 Jun 2011 00:43:37 +0000 (17:43 -0700)]
am 5fe24ec7: am 8daefb9c: Fix layout issue on table when device thinks there\'s a SIM.

* commit '5fe24ec77d183774dfb06262b80b32be608480c7':
  Fix layout issue on table when device thinks there's a SIM.

13 years agoam 8daefb9c: Fix layout issue on table when device thinks there\'s a SIM.
Jim Miller [Sat, 11 Jun 2011 00:41:20 +0000 (17:41 -0700)]
am 8daefb9c: Fix layout issue on table when device thinks there\'s a SIM.

* commit '8daefb9c63cce5e0a87ba38c40dd4f48be3809e1':
  Fix layout issue on table when device thinks there's a SIM.

13 years agoMerge "Add missing API to current.txt"
Romain Guy [Sat, 11 Jun 2011 00:32:40 +0000 (17:32 -0700)]
Merge "Add missing API to current.txt"

13 years agoam cc44bea0: am 2addaf97: Merge "Add toString for IccCard Status and App." into honey...
John Wang [Sat, 11 Jun 2011 00:31:42 +0000 (17:31 -0700)]
am cc44bea0: am 2addaf97: Merge "Add toString for IccCard Status and App." into honeycomb-LTE

* commit 'cc44bea0400bc6b6e995d66b705a4db0a77a7dfa':
  Add toString for IccCard Status and App.

13 years agoam 2addaf97: Merge "Add toString for IccCard Status and App." into honeycomb-LTE
John Wang [Sat, 11 Jun 2011 00:28:11 +0000 (17:28 -0700)]
am 2addaf97: Merge "Add toString for IccCard Status and App." into honeycomb-LTE

* commit '2addaf97b319e257677ac3e5bbb772ba40cfa78a':
  Add toString for IccCard Status and App.

13 years agoMerge "Add toString for IccCard Status and App." into honeycomb-LTE
John Wang [Sat, 11 Jun 2011 00:19:42 +0000 (17:19 -0700)]
Merge "Add toString for IccCard Status and App." into honeycomb-LTE

13 years agoRemove redundant memory barrier
Glenn Kasten [Thu, 2 Jun 2011 15:59:28 +0000 (08:59 -0700)]
Remove redundant memory barrier

pthread_create already includes the necessary memory barriers:
 - parent at pthread_create : pthread_mutex_unlock(start_mutex)
 - child at __thread_entry : pthread_mutex_lock(start_mutex)

Add lock around uses of mThread.

Added comments:
 - uses of mThread require lock
 - androidCreateRawThreadEtc returned ID is not safe for direct use from non-parent threads.

Change-Id: I18cb296b41ddaf64cf127b57aab31154319b5970

13 years agoMerge "Avoid duplicated code calculating the stts sample duration"
James Dong [Fri, 10 Jun 2011 23:23:41 +0000 (16:23 -0700)]
Merge "Avoid duplicated code calculating the stts sample duration"

13 years agoMerge "Add onSurfaceTextureDestroyed() callback."
Romain Guy [Fri, 10 Jun 2011 22:45:23 +0000 (15:45 -0700)]
Merge "Add onSurfaceTextureDestroyed() callback."

13 years agoMerge "Make View respect LAYOUT_DIRECTION_LOCALE"
Fabrice Di Meglio [Fri, 10 Jun 2011 22:45:10 +0000 (15:45 -0700)]
Merge "Make View respect LAYOUT_DIRECTION_LOCALE"

13 years agoMerge "NFC: Submit the missing pieces of previous commit to fix build."
Nick Pelly [Fri, 10 Jun 2011 22:23:37 +0000 (15:23 -0700)]
Merge "NFC: Submit the missing pieces of previous commit to fix build."

13 years agoam 5a9bbc34: am b5141a9f: am 90bdb69b: Merge "fix one NPE when webChromeClient don...
Teng-Hui Zhu [Fri, 10 Jun 2011 22:21:26 +0000 (15:21 -0700)]
am 5a9bbc34: am b5141a9f: am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view support" into honeycomb-mr2

* commit '5a9bbc34cb2a83188b7407c4f7bae47e40593c34':
  fix one NPE when webChromeClient don't have progress view support

13 years agoam 75612e9c: am 1ea549e8: Merge "CDMALTE: Get roaming status based on SID/NID" into...
Robert Greenwalt [Fri, 10 Jun 2011 22:21:22 +0000 (15:21 -0700)]
am 75612e9c: am 1ea549e8: Merge "CDMALTE: Get roaming status based on SID/NID" into honeycomb-LTE

* commit '75612e9c3f92364ba1f0a7fce46f1df11b0a14ca':
  CDMALTE: Get roaming status based on SID/NID

13 years agoMerge "Tweak snap settings"
John Reck [Fri, 10 Jun 2011 21:57:33 +0000 (14:57 -0700)]
Merge "Tweak snap settings"

13 years agoam b5141a9f: am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progres...
Teng-Hui Zhu [Fri, 10 Jun 2011 21:27:13 +0000 (14:27 -0700)]
am b5141a9f: am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view support" into honeycomb-mr2

* commit 'b5141a9fc7e841167c3e07f8797d8aef9a787d25':
  fix one NPE when webChromeClient don't have progress view support

13 years agoMerge "Make AllAudio really include all audio"
Jean-Baptiste Queru [Fri, 10 Jun 2011 21:27:01 +0000 (14:27 -0700)]
Merge "Make AllAudio really include all audio"

13 years agoam 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view suppor...
Teng-Hui Zhu [Fri, 10 Jun 2011 21:22:52 +0000 (14:22 -0700)]
am 90bdb69b: Merge "fix one NPE when webChromeClient don\'t have progress view support" into honeycomb-mr2

* commit '90bdb69bf95e5865547a55260dd61744b0bcc911':
  fix one NPE when webChromeClient don't have progress view support

13 years agoMerge "fix one NPE when webChromeClient don't have progress view support" into honeyc...
Teng-Hui Zhu [Fri, 10 Jun 2011 21:19:22 +0000 (14:19 -0700)]
Merge "fix one NPE when webChromeClient don't have progress view support" into honeycomb-mr2

13 years agoMerge "Fix reflow for mobile sites."
Shimeng (Simon) Wang [Fri, 10 Jun 2011 21:13:36 +0000 (14:13 -0700)]
Merge "Fix reflow for mobile sites."

13 years agoam 1ea549e8: Merge "CDMALTE: Get roaming status based on SID/NID" into honeycomb-LTE
Robert Greenwalt [Fri, 10 Jun 2011 21:13:25 +0000 (14:13 -0700)]
am 1ea549e8: Merge "CDMALTE: Get roaming status based on SID/NID" into honeycomb-LTE

* commit '1ea549e8990d2d73ccd9e92db1e7312423ee423e':
  CDMALTE: Get roaming status based on SID/NID

13 years agoMerge "New KeyChain API for application access to keystore credentials"
Brian Carlstrom [Fri, 10 Jun 2011 21:11:15 +0000 (14:11 -0700)]
Merge "New KeyChain API for application access to keystore credentials"

13 years agoam 0a63ccc6: am 5624b793: am 2bb2d48f: Commit final (maybe) MR 2 API.
Dianne Hackborn [Fri, 10 Jun 2011 21:08:49 +0000 (14:08 -0700)]
am 0a63ccc6: am 5624b793: am 2bb2d48f: Commit final (maybe) MR 2 API.

* commit '0a63ccc63b833e8034cc941bf55a6e2003037309':
  Commit final (maybe) MR 2 API.

13 years agoam 15e9d474: am 88748e6d: am d86302df: Quiet the log.
Dianne Hackborn [Fri, 10 Jun 2011 21:08:45 +0000 (14:08 -0700)]
am 15e9d474: am 88748e6d: am d86302df: Quiet the log.

* commit '15e9d474d1033adbedc8632309df26c3d6dfaee3':
  Quiet the log.

13 years agoam f14dff12: am c6adfed6: am f795e9a8: Okay *now* really enforce the limit on non...
Dianne Hackborn [Fri, 10 Jun 2011 21:08:41 +0000 (14:08 -0700)]
am f14dff12: am c6adfed6: am f795e9a8: Okay *now* really enforce the limit on non-public styles.

* commit 'f14dff1219d2a87340dccad657f666f5451d8c6e':
  Okay *now* really enforce the limit on non-public styles.

13 years agoMerge "CDMALTE: Get roaming status based on SID/NID" into honeycomb-LTE
Robert Greenwalt [Fri, 10 Jun 2011 21:08:28 +0000 (14:08 -0700)]
Merge "CDMALTE: Get roaming status based on SID/NID" into honeycomb-LTE

13 years agoMerge "NfcAdapter: Remove dead AIDL methods."
Nick Pelly [Fri, 10 Jun 2011 20:55:36 +0000 (13:55 -0700)]
Merge "NfcAdapter: Remove dead AIDL methods."

13 years agoMerge "Expose hook for crash backup"
John Reck [Fri, 10 Jun 2011 20:10:52 +0000 (13:10 -0700)]
Merge "Expose hook for crash backup"

13 years agoam 9980043e: am 820caf7b: am 8821ba86: Ummm... f*, stop breaking the build.
Dianne Hackborn [Fri, 10 Jun 2011 20:00:41 +0000 (13:00 -0700)]
am 9980043e: am 820caf7b: am 8821ba86: Ummm...  f*, stop breaking the build.

* commit '9980043e930f877c4cd066de2b3d57dce4fc926e':
  Ummm...  f*, stop breaking the build.

13 years agoMerge "resolved conflicts for merge of f51ded0f to master"
Dianne Hackborn [Fri, 10 Jun 2011 19:47:12 +0000 (12:47 -0700)]
Merge "resolved conflicts for merge of f51ded0f to master"

13 years agoresolved conflicts for merge of f51ded0f to master
Dianne Hackborn [Fri, 10 Jun 2011 19:45:36 +0000 (12:45 -0700)]
resolved conflicts for merge of f51ded0f to master

Change-Id: Ida356524a68aeb2b9b0013dfbb6ab4bd11e616e2

13 years agoMerge "Fix some measurement/sizing with split action bars"
Adam Powell [Fri, 10 Jun 2011 18:59:03 +0000 (11:59 -0700)]
Merge "Fix some measurement/sizing with split action bars"

13 years agoMerge "Optimise the way that indices are auto-allocated so that XML files can normall...
Philip Milne [Fri, 10 Jun 2011 18:54:39 +0000 (11:54 -0700)]
Merge "Optimise the way that indices are auto-allocated so that XML files can normally avoid using indices."

13 years agoMerge "Upgrade of Calendar db to 305"
RoboErik [Fri, 10 Jun 2011 18:36:15 +0000 (11:36 -0700)]
Merge "Upgrade of Calendar db to 305"

13 years agoMerge "Adding config_alwaysUseCdmaRssi. The change that added this didn't make it...
Dan Morrill [Fri, 10 Jun 2011 18:01:48 +0000 (11:01 -0700)]
Merge "Adding config_alwaysUseCdmaRssi. The change that added this didn't make it to master do to a merge conflict oversight."

13 years agoMerge "Change Property.set() to throw UnsupportedOperationException by default"
Chet Haase [Fri, 10 Jun 2011 17:58:26 +0000 (10:58 -0700)]
Merge "Change Property.set() to throw UnsupportedOperationException by default"

13 years agoam 5a8455c3: am 75749ab1: Merge "Set locale based on SIM preferred language." into...
Robert Greenwalt [Fri, 10 Jun 2011 17:33:23 +0000 (10:33 -0700)]
am 5a8455c3: am 75749ab1: Merge "Set locale based on SIM preferred language." into honeycomb-LTE

* commit '5a8455c3c625201f3ae6b9ce32913bf97ba61cc8':
  Set locale based on SIM preferred language.

13 years agoam dc03da04: (-s ours) am 2488a943: am e3b80c83: Merge "Revert "Add avg bandwidth...
James Dong [Fri, 10 Jun 2011 17:32:21 +0000 (10:32 -0700)]
am dc03da04: (-s ours) am 2488a943: am e3b80c83: Merge "Revert "Add avg bandwidth estimate every 2 seconds - do not merge."" into honeycomb-mr2

* commit 'dc03da0444803983aef4988475f2d5dcdf0283e9':
  Revert "Add avg bandwidth estimate every 2 seconds - do not merge."

13 years agoam 6d60190a: am e502c536: am b3174c46: UsbService: Fix JNI reference leak
Mike Lockwood [Fri, 10 Jun 2011 17:32:16 +0000 (10:32 -0700)]
am 6d60190a: am e502c536: am b3174c46: UsbService: Fix JNI reference leak

* commit '6d60190a3156e0ac69c800bbb10691b70ae9bd54':
  UsbService: Fix JNI reference leak

13 years agoam e9f203e4: am 9b0a8f9a: am 1d3173c3: Merge "Updating default wallpaper of large...
Justin Ho [Fri, 10 Jun 2011 17:32:10 +0000 (10:32 -0700)]
am e9f203e4: am 9b0a8f9a: am 1d3173c3: Merge "Updating default wallpaper of large devices to match xlarge" into honeycomb-mr2

* commit 'e9f203e44363f0ee035aa2cd6aad3d5680e6c94f':
  Updating default wallpaper of large devices to match xlarge

13 years agoam 48305f32: am 2e0f7118: am 8ee28811: Merge changes Idbb70f53,I10426a3f into honeyco...
Xavier Ducrohet [Fri, 10 Jun 2011 17:31:52 +0000 (10:31 -0700)]
am 48305f32: am 2e0f7118: am 8ee28811: Merge changes Idbb70f53,I10426a3f into honeycomb-mr2

* commit '48305f327ff3839ddbfa5a6fb42a57150a69480c':
  Merge 06942bc4 from hc-mr1.
  Merge 988eeeb5 from hc-mr1.

13 years agoam e668c0b6: (-s ours) am 644f36ea: am d8b027b1: Merge "stagefright aacenc/amrwbenc...
Conley Owens [Fri, 10 Jun 2011 17:30:38 +0000 (10:30 -0700)]
am e668c0b6: (-s ours) am 644f36ea: am d8b027b1: Merge "stagefright aacenc/amrwbenc: Convert line breaks to Unix style"

* commit 'e668c0b69896996040f394e0a95f71dd4b9c6257':
  stagefright aacenc/amrwbenc: Convert line breaks to Unix style

13 years agoMerge "New device policy to disable camera."
Ben Komalo [Fri, 10 Jun 2011 17:17:34 +0000 (10:17 -0700)]
Merge "New device policy to disable camera."

13 years agoMerge "Add ParcelSurfaceTexture Java class to enable ISurfaceTexture sharing via...
Jamie Gennis [Fri, 10 Jun 2011 17:05:04 +0000 (10:05 -0700)]
Merge "Add ParcelSurfaceTexture Java class to enable ISurfaceTexture sharing via Binder."

13 years agoMerge "Call storeMetaDataInVideoBuffers() before get/setParameters() on index OMX_Ind...
James Dong [Fri, 10 Jun 2011 16:57:01 +0000 (09:57 -0700)]
Merge "Call storeMetaDataInVideoBuffers() before get/setParameters() on index OMX_IndexParamPortDefinition"

13 years agoMerge "Correctly handle crop rect event in SoftAVC.cpp"
James Dong [Fri, 10 Jun 2011 16:56:44 +0000 (09:56 -0700)]
Merge "Correctly handle crop rect event in SoftAVC.cpp"

13 years agoMerge "Make dumpsys(media.player) more useful by having AwesomePlayer populate it."
Andreas Huber [Fri, 10 Jun 2011 15:02:18 +0000 (08:02 -0700)]
Merge "Make dumpsys(media.player) more useful by having AwesomePlayer populate it."

13 years agoMerge "Don't hardcode the default engine."
Narayan Kamath [Fri, 10 Jun 2011 14:53:56 +0000 (07:53 -0700)]
Merge "Don't hardcode the default engine."

13 years agoam 5624b793: am 2bb2d48f: Commit final (maybe) MR 2 API.
Dianne Hackborn [Fri, 10 Jun 2011 14:46:51 +0000 (07:46 -0700)]
am 5624b793: am 2bb2d48f: Commit final (maybe) MR 2 API.

* commit '5624b793cb791621a586931d9f02eefdf6cfc7c8':
  Commit final (maybe) MR 2 API.

13 years agoam 88748e6d: am d86302df: Quiet the log.
Dianne Hackborn [Fri, 10 Jun 2011 14:46:27 +0000 (07:46 -0700)]
am 88748e6d: am d86302df: Quiet the log.

* commit '88748e6dc0151916f6bd19ffde8ba96fe8fd0a87':
  Quiet the log.

13 years agoam c6adfed6: am f795e9a8: Okay *now* really enforce the limit on non-public styles.
Dianne Hackborn [Fri, 10 Jun 2011 14:45:38 +0000 (07:45 -0700)]
am c6adfed6: am f795e9a8: Okay *now* really enforce the limit on non-public styles.

* commit 'c6adfed6dcea8482e482db58bd396ea8de08426a':
  Okay *now* really enforce the limit on non-public styles.

13 years agoMerge "Some TTS fixes."
Narayan Kamath [Fri, 10 Jun 2011 13:23:17 +0000 (06:23 -0700)]
Merge "Some TTS fixes."

13 years agoMerge "Voicemail provider contract definition."
Debashish Chatterjee [Fri, 10 Jun 2011 11:42:32 +0000 (04:42 -0700)]
Merge "Voicemail provider contract definition."

13 years agoMerge "Voicemail related fields in calllog provider."
Debashish Chatterjee [Fri, 10 Jun 2011 11:38:07 +0000 (04:38 -0700)]
Merge "Voicemail related fields in calllog provider."

13 years agoMerge "API to set additional subtypes"
satok [Fri, 10 Jun 2011 07:26:52 +0000 (00:26 -0700)]
Merge "API to set additional subtypes"

13 years agoMerge "Action buttons now use themable style."
Adam Powell [Fri, 10 Jun 2011 05:07:11 +0000 (22:07 -0700)]
Merge "Action buttons now use themable style."

13 years agoMerge "KeyChain API refinements"
Brian Carlstrom [Fri, 10 Jun 2011 04:11:50 +0000 (21:11 -0700)]
Merge "KeyChain API refinements"

13 years agoMerge "Refine the behavior of split action bars."
Adam Powell [Fri, 10 Jun 2011 04:08:52 +0000 (21:08 -0700)]
Merge "Refine the behavior of split action bars."

13 years agoam 2bb2d48f: Commit final (maybe) MR 2 API.
Dianne Hackborn [Fri, 10 Jun 2011 02:26:25 +0000 (19:26 -0700)]
am 2bb2d48f: Commit final (maybe) MR 2 API.

* commit '2bb2d48f9ca1726b8de957ec7ea321c767409c12':
  Commit final (maybe) MR 2 API.