OSDN Git Service

android-x86/frameworks-base.git
13 years agoam 1eefb529: Merge "Phone crash when old callback func is woken up when enabling...
Jaikumar Ganesh [Tue, 1 Mar 2011 00:00:01 +0000 (16:00 -0800)]
am 1eefb529: Merge "Phone crash when old callback func is woken up when enabling BT."

* commit '1eefb529c78be5336f6c8a1b8ac2c32e268d4294':
  Phone crash when old callback func is woken up when enabling BT.

13 years agoMerge "Phone crash when old callback func is woken up when enabling BT."
Jaikumar Ganesh [Mon, 28 Feb 2011 23:33:34 +0000 (15:33 -0800)]
Merge "Phone crash when old callback func is woken up when enabling BT."

13 years agoam e0537f18: Merge "Fix of tearDown() in SingleLaunchActivityTestCase."
Jean-Baptiste Queru [Mon, 28 Feb 2011 18:15:46 +0000 (10:15 -0800)]
am e0537f18: Merge "Fix of tearDown() in SingleLaunchActivityTestCase."

* commit 'e0537f1859664ba9c9cf87eb9d6dc3c16986dbb8':
  Fix of tearDown() in SingleLaunchActivityTestCase.

13 years agoMerge "Fix of tearDown() in SingleLaunchActivityTestCase."
Jean-Baptiste Queru [Mon, 28 Feb 2011 18:12:08 +0000 (10:12 -0800)]
Merge "Fix of tearDown() in SingleLaunchActivityTestCase."

13 years agoam dff6b8e7: Merge "Add --non-constant-id to aapt."
Xavier Ducrohet [Mon, 28 Feb 2011 17:16:38 +0000 (09:16 -0800)]
am dff6b8e7: Merge "Add --non-constant-id to aapt."

* commit 'dff6b8e71dda9f5d841fa26408714aec2aef1505':
  GpsLocationProvider: Clean up HAL initialization/cleanup sequence
  Fixed GSM encoded network initiated position request
  Ensuring thread-safe usage of DateFormat.
  Fixing infinite loop for zero duration.
  Fix for an infinite loop while scrolling lists.
  WAPPushManager, WAP Push over SMS message handler
  Add --non-constant-id to aapt.

13 years agoMerge "Add --non-constant-id to aapt."
Xavier Ducrohet [Thu, 24 Feb 2011 23:59:26 +0000 (15:59 -0800)]
Merge "Add --non-constant-id to aapt."

13 years agoMerge "WAPPushManager, WAP Push over SMS message handler"
Wink Saville [Thu, 24 Feb 2011 01:40:43 +0000 (17:40 -0800)]
Merge "WAPPushManager, WAP Push over SMS message handler"

13 years agoMerge "GpsLocationProvider: Clean up HAL initialization/cleanup sequence"
Mike Lockwood [Thu, 24 Feb 2011 00:27:27 +0000 (16:27 -0800)]
Merge "GpsLocationProvider: Clean up HAL initialization/cleanup sequence"

13 years agoGpsLocationProvider: Clean up HAL initialization/cleanup sequence
Mike Lockwood [Wed, 23 Feb 2011 16:21:00 +0000 (08:21 -0800)]
GpsLocationProvider: Clean up HAL initialization/cleanup sequence

Change-Id: Id5467000f3f3da5cbe1f112dad97a032688d2eac
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoMerge "Fixed GSM encoded network initiated position request"
Brad Fitzpatrick [Wed, 23 Feb 2011 16:17:31 +0000 (08:17 -0800)]
Merge "Fixed GSM encoded network initiated position request"

13 years agoMerge "Ensuring thread-safe usage of DateFormat."
Elliott Hughes [Tue, 22 Feb 2011 19:16:04 +0000 (11:16 -0800)]
Merge "Ensuring thread-safe usage of DateFormat."

13 years agoMerge "Fix for an infinite loop while scrolling lists."
Brad Fitzpatrick [Tue, 22 Feb 2011 18:55:44 +0000 (10:55 -0800)]
Merge "Fix for an infinite loop while scrolling lists."

13 years agoMerge "Fixing infinite loop for zero duration."
Brad Fitzpatrick [Tue, 22 Feb 2011 16:23:23 +0000 (08:23 -0800)]
Merge "Fixing infinite loop for zero duration."

13 years agoFixed GSM encoded network initiated position request
Hakan Gustavsson [Thu, 18 Nov 2010 14:00:35 +0000 (15:00 +0100)]
Fixed GSM encoded network initiated position request

GSM encoded network initiated position requests were previously
not correctly decoded. The GSM encoded string was decoded as
ASCII but not all characters are encoded in the same way for
GSM and ASCII. These characters was not displayed.

Besides that, when the number of characters was evenly divided
by 8 the last character was lost. This is also corrected.

Change-Id: Ic70b7c28bbba1f2936a9cc99e78f8002cc5c8761

13 years agoEnsuring thread-safe usage of DateFormat.
Jozef BABJAK [Tue, 22 Feb 2011 08:17:51 +0000 (09:17 +0100)]
Ensuring thread-safe usage of DateFormat.

DateFormat is inherently unsafe for multithreaded use. This patch adds
proper synchronization. The 'sLock' is re-used. To avoid two consecutive
lockings, locked version of initFormatStrings() method is created and
used where appropriate, i.e. in original method AND in added synchronized
block.

Change-Id: Id3c34613623e743e703aadb2342aa788679dda8a

13 years agoFixing infinite loop for zero duration.
Jozef BABJAK [Tue, 22 Feb 2011 06:20:30 +0000 (07:20 +0100)]
Fixing infinite loop for zero duration.

Change-Id: I837478c1598f1d2f99bf773597f0d66d0fc3cf1a

13 years agoFix for an infinite loop while scrolling lists.
Daniel Mladenovic [Mon, 21 Feb 2011 08:17:40 +0000 (09:17 +0100)]
Fix for an infinite loop while scrolling lists.

When scrolling in a list it's possible to get stuck in a
loop where the screen is continuously redrawn. This happens
when you are at the end of a list and try to scroll further.
The problem is that you enter a switch statement with the
mState variable set to STATE_PULL_DECAY. This will trigger
code in the switch statement that does some adjustments and
calculations, but it does not change the value of mState to
STATE_IDLE or STATE_RECEDE after it's done. Hence it will
continue to return to the same place and not stop updating
since the update() method signals for completion only when
the mState variable is set to STATE_IDLE.

The fix is changing the value of mState after the
adjustments and calculations have been made.

Change-Id: I57bc84ec12d43ca87a1163d94cb5b206a376a24e

13 years agoam 7118bdec: Merge "Fix for #12945: ProgressBar.setMax() will always redraw."
Romain Guy [Fri, 18 Feb 2011 15:53:50 +0000 (07:53 -0800)]
am 7118bdec: Merge "Fix for #12945: ProgressBar.setMax() will always redraw."

* commit '7118bdec523568842e70555e353951df9f2596fd':
  Fix for #12945: ProgressBar.setMax() will always redraw.

13 years agoMerge "Fix for #12945: ProgressBar.setMax() will always redraw."
Romain Guy [Fri, 18 Feb 2011 06:40:33 +0000 (22:40 -0800)]
Merge "Fix for #12945: ProgressBar.setMax() will always redraw."

13 years agoFix for #12945: ProgressBar.setMax() will always redraw.
Michael Krehan [Fri, 18 Feb 2011 04:04:27 +0000 (20:04 -0800)]
Fix for #12945: ProgressBar.setMax() will always redraw.

Fix for issue #12945: Changing the maximum of a progress bar does
not cause it to be redrawn, even though a new maximum changes the
position of the current progress in relation to its maximum. With this fix,
setMax() will always cause refreshProgress() to be called if the maximum is
different than it was before.

Change-Id: I971ec3302953bcadc0aac3dd8241481bab2b5a91

13 years agoWAPPushManager, WAP Push over SMS message handler
noda [Thu, 19 Aug 2010 23:10:00 +0000 (08:10 +0900)]
WAPPushManager, WAP Push over SMS message handler

The WAPPushManager is a new, optional service for handling WAP Push
over SMS messages.  This service allows a carrier to designate a high
priority handler for specific WAP Push over SMS messages without
affecting other WAP Push over SMS, binary SMS, or SMS text messages.
It is also optional, so that it can be configured out of the target
image resulting in no change in the WAP Push over SMS handling
behavior compared to the current AOSP.

- This patch contains the WAPPushManager itself, the associated test
  code, and the modifications to telephony to use the WAPPushManager.

Change-Id: I4f7fb5b68fc666da9bdeeea525e8797ae317e4b5

13 years agoAdd --non-constant-id to aapt.
Xavier Ducrohet [Tue, 15 Feb 2011 00:58:00 +0000 (16:58 -0800)]
Add --non-constant-id to aapt.

This option enbables creating resource constant in the R class
that are not actual constant, but simply static fields.

The goal is to build library projects with these types of
IDs so that the constant does not get inlined in the library
code, since the ID for the library resources only are not
the final values.

The final resource IDs, generated from the main project and
its library(ies), will have proper constant with the final
values.

This allows us to generate binary library bundle (a jar file
and associated resources) that can be distributed. Additionally,
this will let us make the library project support in Eclipse
much more robust and a better user experience overall.

Change-Id: Ibe2f08d68493fde658fc3f7606abf7446f312ad2

13 years agoam 322891c6: Doc change: nfc dev guide
Robert Ly [Fri, 11 Feb 2011 21:18:31 +0000 (13:18 -0800)]
am 322891c6: Doc change: nfc dev guide

* commit '322891c689c845b5aa63dbca606967eb9f8f900b':
  Doc change: nfc dev guide

13 years agoam 6901f963: am 93552de8: Merge "stubs"
Jean-Baptiste Queru [Fri, 11 Feb 2011 18:04:53 +0000 (10:04 -0800)]
am 6901f963: am 93552de8: Merge "stubs"

* commit '6901f963c27f2d0a9caf56b42b6054d0cecc84d1':
  stubs

13 years agoam 93552de8: Merge "stubs"
Jean-Baptiste Queru [Fri, 11 Feb 2011 17:54:59 +0000 (09:54 -0800)]
am 93552de8: Merge "stubs"

* commit '93552de8e305027fb003401e347b9493c64c981f':
  stubs

13 years agoMerge "stubs"
Jean-Baptiste Queru [Fri, 11 Feb 2011 17:39:46 +0000 (09:39 -0800)]
Merge "stubs"

13 years agostubs
Steve Block [Fri, 11 Feb 2011 00:04:48 +0000 (16:04 -0800)]
stubs

Change-Id: I6bc0b8e9d4412a0b60c6226fbd2b7a6d15aceb22

13 years agoDoc change: nfc dev guide
Robert Ly [Thu, 10 Feb 2011 21:42:13 +0000 (13:42 -0800)]
Doc change: nfc dev guide

Change-Id: I380cebe8d015749a00f6f3d22fdc5c55a380f447

13 years agoam 2050de5b: Text selection is broken.
Gilles Debunne [Thu, 10 Feb 2011 00:49:42 +0000 (16:49 -0800)]
am 2050de5b: Text selection is broken.

* commit '2050de5b9a5c097e30545ab822211d49031bd9dc':
  Text selection is broken.

13 years agoText selection is broken.
Gilles Debunne [Wed, 9 Feb 2011 22:17:22 +0000 (14:17 -0800)]
Text selection is broken.

Bug 3439569

Lazy initialization code was not back-ported.

Change-Id: I9815f649891e2ddc602383488749144686ab1dd3

13 years agoam 01a5eba8: am 6e25789f: Merge "Telephony: Fix cb sms implementation"
Wink Saville [Wed, 9 Feb 2011 21:45:37 +0000 (13:45 -0800)]
am 01a5eba8: am 6e25789f: Merge "Telephony: Fix cb sms implementation"

* commit '01a5eba810bfdf5b111a7546814e174c1d57b6e7':
  Telephony: Fix cb sms implementation

13 years agoam 6e25789f: Merge "Telephony: Fix cb sms implementation"
Wink Saville [Wed, 9 Feb 2011 21:42:45 +0000 (13:42 -0800)]
am 6e25789f: Merge "Telephony: Fix cb sms implementation"

* commit '6e25789fbe7ac283021156b17f406acb48850292':
  Telephony: Fix cb sms implementation

13 years agoMerge "Telephony: Fix cb sms implementation"
Wink Saville [Wed, 9 Feb 2011 21:09:24 +0000 (13:09 -0800)]
Merge "Telephony: Fix cb sms implementation"

13 years agoam ada1b6f2: Merge "fix [3421350] Killing a game that uses the accelerometer renders...
Mathias Agopian [Wed, 9 Feb 2011 21:09:12 +0000 (13:09 -0800)]
am ada1b6f2: Merge "fix [3421350] Killing a game that uses the accelerometer renders the device unable to sleep" into gingerbread

* commit 'ada1b6f297596cac4451edbc83df060a31cdda68':
  fix [3421350] Killing a game that uses the accelerometer renders the device unable to sleep

13 years agoMerge "fix [3421350] Killing a game that uses the accelerometer renders the device...
Mathias Agopian [Wed, 9 Feb 2011 21:06:00 +0000 (13:06 -0800)]
Merge "fix [3421350] Killing a game that uses the accelerometer renders the device unable to sleep" into gingerbread

13 years agoam 07cefd3c: add 2.3.3 announcement to site home page
Scott Main [Wed, 9 Feb 2011 21:03:11 +0000 (13:03 -0800)]
am 07cefd3c: add 2.3.3 announcement to site home page

* commit '07cefd3cc3d8d27750e4fc725d9aec86250750dd':
  add 2.3.3 announcement to site home page

13 years agoadd 2.3.3 announcement to site home page
Scott Main [Wed, 9 Feb 2011 18:17:08 +0000 (10:17 -0800)]
add 2.3.3 announcement to site home page

Change-Id: I4323a1a30fad8a67cce55baba9f7a89c4bdd4494

13 years agoam 58c9d472: Merge "More documentation updates for NFC." into gingerbread
Jeff Hamilton [Wed, 9 Feb 2011 08:36:53 +0000 (00:36 -0800)]
am 58c9d472: Merge "More documentation updates for NFC." into gingerbread

* commit '58c9d4726ebf3165b0dbbcebb1130dfc5502bfe9':
  More documentation updates for NFC.

13 years agoMerge "More documentation updates for NFC." into gingerbread
Jeff Hamilton [Wed, 9 Feb 2011 08:34:22 +0000 (00:34 -0800)]
Merge "More documentation updates for NFC." into gingerbread

13 years agoMore documentation updates for NFC.
Jeff Hamilton [Wed, 9 Feb 2011 08:26:47 +0000 (17:26 +0900)]
More documentation updates for NFC.

Change-Id: Ie134d4296ee12333e6647ce76126f9767ba1ba34

13 years agoam a3f53afd: Merge "Doc change: Add version notes for Android 2.3.3." into gingerbread
Dirk Dougherty [Wed, 9 Feb 2011 07:27:53 +0000 (23:27 -0800)]
am a3f53afd: Merge "Doc change: Add version notes for Android 2.3.3." into gingerbread

* commit 'a3f53afd13bc1722464e169cb82a01d3898852b5':
  Doc change: Add version notes for Android 2.3.3.

13 years agoam 39cf3a44: Document NFC permissions.
Nick Pelly [Wed, 9 Feb 2011 07:25:29 +0000 (23:25 -0800)]
am 39cf3a44: Document NFC permissions.

* commit '39cf3a445e507f219ecc8a476f6038f095d9d520':
  Document NFC permissions.

13 years agoMerge "Doc change: Add version notes for Android 2.3.3." into gingerbread
Dirk Dougherty [Wed, 9 Feb 2011 07:24:22 +0000 (23:24 -0800)]
Merge "Doc change: Add version notes for Android 2.3.3." into gingerbread

13 years agoDocument NFC permissions.
Nick Pelly [Mon, 7 Feb 2011 08:04:21 +0000 (17:04 +0900)]
Document NFC permissions.

Change-Id: Ib1b1625058c9c673692f3fbcb3546ec7c2d54a07

13 years agoDoc change: Add version notes for Android 2.3.3.
Dirk Dougherty [Tue, 8 Feb 2011 01:32:11 +0000 (17:32 -0800)]
Doc change: Add version notes for Android 2.3.3.

Change-Id: I32dffaee15079a3dffb30dcdff6587be03378fc5

13 years agoam 584afa8d: Merge "Improve the docs a bit for foreground dispatch." into gingerbread
Jeff Hamilton [Wed, 9 Feb 2011 03:33:53 +0000 (19:33 -0800)]
am 584afa8d: Merge "Improve the docs a bit for foreground dispatch." into gingerbread

* commit '584afa8dde1777b181e773a491416769f25607a8':
  Improve the docs a bit for foreground dispatch.

13 years agoMerge "Improve the docs a bit for foreground dispatch." into gingerbread
Jeff Hamilton [Wed, 9 Feb 2011 03:30:47 +0000 (19:30 -0800)]
Merge "Improve the docs a bit for foreground dispatch." into gingerbread

13 years agoImprove the docs a bit for foreground dispatch.
Jeff Hamilton [Wed, 9 Feb 2011 03:27:01 +0000 (12:27 +0900)]
Improve the docs a bit for foreground dispatch.

Change-Id: I4179133a0956bc66a49201c20f1dd2d6d67874d2

13 years agoam be4b39d2: Merge "Import revised translations. DO NOT MERGE" into gingerbread
Eric Fischer [Wed, 9 Feb 2011 01:32:18 +0000 (17:32 -0800)]
am be4b39d2: Merge "Import revised translations.  DO NOT MERGE" into gingerbread

* commit 'be4b39d2fde3d34539752b99238ceebd97ccf580':
  Import revised translations.  DO NOT MERGE

13 years agoam 3c01a139: rename SIP doc title
Scott Main [Wed, 9 Feb 2011 01:32:14 +0000 (17:32 -0800)]
am 3c01a139: rename SIP doc title

* commit '3c01a139f0d8ece0e300be26ac41280f1e934747':
  rename SIP doc title

13 years agoam c442bc60: docs: move the SIP guide into guide/network/
Scott Main [Wed, 9 Feb 2011 01:32:06 +0000 (17:32 -0800)]
am c442bc60: docs: move the SIP guide into guide/network/

* commit 'c442bc605c80a2900a0ed41345f53d218288de7a':
  docs: move the SIP guide into guide/network/

13 years agoam 7134520b: cherrypick Change-Id: I5b52c5d11e111a9dab2b08fd44a439ab4db04dd2 Doc...
Katie McCormick [Wed, 9 Feb 2011 01:31:59 +0000 (17:31 -0800)]
am 7134520b: cherrypick Change-Id: I5b52c5d11e111a9dab2b08fd44a439ab4db04dd2 Doc change: Adding new docs for SIP API

* commit '7134520b2635474c5e7f4902c26e12d0ffcc9c64':
  cherrypick Change-Id: I5b52c5d11e111a9dab2b08fd44a439ab4db04dd2 Doc change: Adding new docs for SIP API

13 years agoam 01967c0e: Merge "Doc change: Add diff report for api 10." into gingerbread
Dirk Dougherty [Wed, 9 Feb 2011 01:31:54 +0000 (17:31 -0800)]
am 01967c0e: Merge "Doc change: Add diff report for api 10." into gingerbread

* commit '01967c0ee104e985167374e41f2c416c1100f767':
  Doc change: Add diff report for api 10.

13 years agoam cdfe8999: Fix for multiple merge problem.
Gilles Debunne [Wed, 9 Feb 2011 01:31:33 +0000 (17:31 -0800)]
am cdfe8999: Fix for multiple merge problem.

* commit 'cdfe899991c365d9e197d83f8859089cae082011':
  Fix for multiple merge problem.

13 years agoTelephony: Fix cb sms implementation
Alex Yakavenka [Wed, 9 Feb 2011 01:18:46 +0000 (17:18 -0800)]
Telephony: Fix cb sms implementation

Change-Id: Ie2a678e3ab99f0d5b9dd68cc4a79e1c5a58ecbe2

13 years agoresolved conflicts for merge of c0728cc0 to gingerbread-plus-aosp
Gilles Debunne [Wed, 9 Feb 2011 00:33:58 +0000 (16:33 -0800)]
resolved conflicts for merge of c0728cc0 to gingerbread-plus-aosp

Change-Id: I1b941e0610e498365d441c7bd23af276d1b5f986

13 years agoMerge "Import revised translations. DO NOT MERGE" into gingerbread
Eric Fischer [Tue, 8 Feb 2011 18:00:24 +0000 (10:00 -0800)]
Merge "Import revised translations.  DO NOT MERGE" into gingerbread

13 years agorename SIP doc title
Scott Main [Tue, 8 Feb 2011 17:37:47 +0000 (09:37 -0800)]
rename SIP doc title

Change-Id: I14aa36bc617ef77c20804c868caa8bf85b0fb5f8

13 years agodocs: move the SIP guide into guide/network/
Scott Main [Tue, 8 Feb 2011 02:35:49 +0000 (18:35 -0800)]
docs: move the SIP guide into guide/network/

Change-Id: I3c2a7ea731d2fc3c0e2372e2f1a06ed659a6539f

13 years agocherrypick Change-Id: I5b52c5d11e111a9dab2b08fd44a439ab4db04dd2
Katie McCormick [Sat, 5 Feb 2011 01:41:07 +0000 (17:41 -0800)]
cherrypick Change-Id: I5b52c5d11e111a9dab2b08fd44a439ab4db04dd2
Doc change: Adding new docs for SIP API

Change-Id: I62bedbcaab3900edcc49d67b59279c5025977a95

13 years agoMerge "Doc change: Add diff report for api 10." into gingerbread
Dirk Dougherty [Tue, 8 Feb 2011 01:21:56 +0000 (17:21 -0800)]
Merge "Doc change: Add diff report for api 10." into gingerbread

13 years agoImport revised translations. DO NOT MERGE
Eric Fischer [Mon, 7 Feb 2011 21:17:26 +0000 (13:17 -0800)]
Import revised translations.  DO NOT MERGE

Change-Id: I9fe35888f8aa02c559949ad8395e8e4f4dffb669

13 years agoam b901c9ab: am 9204644d: Merge "Fix a race condition in NativeDaemonConnector"
Brad Fitzpatrick [Mon, 7 Feb 2011 18:07:46 +0000 (10:07 -0800)]
am b901c9ab: am 9204644d: Merge "Fix a race condition in NativeDaemonConnector"

* commit 'b901c9abff6b3885e1efce2e643b1f8e5ef3fc79':
  Fix a race condition in NativeDaemonConnector

13 years agoam 9204644d: Merge "Fix a race condition in NativeDaemonConnector"
Brad Fitzpatrick [Mon, 7 Feb 2011 18:04:54 +0000 (10:04 -0800)]
am 9204644d: Merge "Fix a race condition in NativeDaemonConnector"

* commit '9204644d9e8fc2a3d05ff386b14b349f7a117694':
  Fix a race condition in NativeDaemonConnector

13 years agoMerge "Fix a race condition in NativeDaemonConnector"
Brad Fitzpatrick [Mon, 7 Feb 2011 17:55:34 +0000 (09:55 -0800)]
Merge "Fix a race condition in NativeDaemonConnector"

13 years agoFix a race condition in NativeDaemonConnector
anga [Tue, 1 Feb 2011 13:10:25 +0000 (14:10 +0100)]
Fix a race condition in NativeDaemonConnector

Fixes a race between the onDaemonConnected callback and setting the
mOutputStream in NativeDaemonConnector.

MountService connects to vold using the NativeDaemonConnector.
Throws a â€śNativeDaemonConnectorException: No output stream!”
when the onDaemonConnected callback in MountService calls the doListCommand.

Change-Id: Ib895bab37f7df680e4362df6366198c0a673c5e9

13 years agoam 4b7c1cac: am bb2e1ef8: Merge "Fixing possible race condition."
Dianne Hackborn [Mon, 7 Feb 2011 15:51:34 +0000 (07:51 -0800)]
am 4b7c1cac: am bb2e1ef8: Merge "Fixing possible race condition."

* commit '4b7c1cacca252f735d23f7e01885214630d83f32':
  Fixing possible race condition.

13 years agoam bb2e1ef8: Merge "Fixing possible race condition."
Dianne Hackborn [Mon, 7 Feb 2011 15:33:38 +0000 (07:33 -0800)]
am bb2e1ef8: Merge "Fixing possible race condition."

* commit 'bb2e1ef87fe4c5123340035766c759155e6bb90c':
  Fixing possible race condition.

13 years agoMerge "Fixing possible race condition."
Dianne Hackborn [Sun, 6 Feb 2011 17:06:35 +0000 (09:06 -0800)]
Merge "Fixing possible race condition."

13 years agoFix for multiple merge problem.
Gilles Debunne [Sat, 5 Feb 2011 00:50:01 +0000 (16:50 -0800)]
Fix for multiple merge problem.

Change-Id: I5d9c497f44aa9cdc34c195c41e02c3d7353c3fb4

13 years agoam d2a99617: am c94a9998: Merge "JPtextinput: Dont break emoji characters when cuttin...
Kenny Root [Sat, 5 Feb 2011 00:12:14 +0000 (16:12 -0800)]
am d2a99617: am c94a9998: Merge "JPtextinput: Dont break emoji characters when cutting strings."

* commit 'd2a996173e53e7b38ff9b703cc5986d9715508a1':
  JPtextinput: Dont break emoji characters when cutting strings.

13 years agoam c94a9998: Merge "JPtextinput: Dont break emoji characters when cutting strings."
Kenny Root [Sat, 5 Feb 2011 00:01:13 +0000 (16:01 -0800)]
am c94a9998: Merge "JPtextinput: Dont break emoji characters when cutting strings."

* commit 'c94a99987d8a49ea599c22ffad0e61db591963e0':
  JPtextinput: Dont break emoji characters when cutting strings.

13 years agoam 893ac28f: Merge "Blinking runnable is created only if text is editable. DO NOT...
Gilles Debunne [Fri, 4 Feb 2011 23:50:15 +0000 (15:50 -0800)]
am 893ac28f: Merge "Blinking runnable is created only if text is editable. DO NOT MERGE." into gingerbread

* commit '893ac28f75561061a8f334cbd4e47833d7fd7843':
  Blinking runnable is created only if text is editable. DO NOT MERGE.

13 years agoam 8a6ba494: Merge "All runnable are stopped on detach. DO NOT MERGE." into gingerbread
Gilles Debunne [Fri, 4 Feb 2011 23:50:12 +0000 (15:50 -0800)]
am 8a6ba494: Merge "All runnable are stopped on detach. DO NOT MERGE." into gingerbread

* commit '8a6ba494a28702e68b0a8fbd8bac34335536a8f8':
  All runnable are stopped on detach. DO NOT MERGE.

13 years agoDouble tap triggers text selection in a TextView. DO NOT MERGE
Gilles Debunne [Tue, 12 Oct 2010 00:12:39 +0000 (17:12 -0700)]
Double tap triggers text selection in a TextView. DO NOT MERGE

This is a convenient way to switch to selection mode without the
context menu. Context menu is still available and offerts Select Input method option.

Browser overloads touch events and this feature is not available in Browser which
limits the conflict with double tap zoom in browser.

Change-Id: I286504cf03733d5c2fb9bc01765f713d14bbd2f4

13 years agoam 53841df2: Merge "SelectAllOnFocus shows a higlighted text. DO NOT MERGE." into...
Gilles Debunne [Fri, 4 Feb 2011 23:49:56 +0000 (15:49 -0800)]
am 53841df2: Merge "SelectAllOnFocus shows a higlighted text. DO NOT MERGE." into gingerbread

* commit '53841df2a49bffa53ba3d1e4b0580f4f23a64dc3':
  SelectAllOnFocus shows a higlighted text. DO NOT MERGE.

13 years agoMerge "Blinking runnable is created only if text is editable. DO NOT MERGE." into...
Gilles Debunne [Fri, 4 Feb 2011 23:46:15 +0000 (15:46 -0800)]
Merge "Blinking runnable is created only if text is editable. DO NOT MERGE." into gingerbread

13 years agoMerge "All runnable are stopped on detach. DO NOT MERGE." into gingerbread
Gilles Debunne [Fri, 4 Feb 2011 23:46:11 +0000 (15:46 -0800)]
Merge "All runnable are stopped on detach. DO NOT MERGE." into gingerbread

13 years agoMerge "SelectAllOnFocus shows a higlighted text. DO NOT MERGE." into gingerbread
Gilles Debunne [Fri, 4 Feb 2011 23:46:06 +0000 (15:46 -0800)]
Merge "SelectAllOnFocus shows a higlighted text. DO NOT MERGE." into gingerbread

13 years agoMerge "JPtextinput: Dont break emoji characters when cutting strings."
Kenny Root [Fri, 4 Feb 2011 23:42:14 +0000 (15:42 -0800)]
Merge "JPtextinput: Dont break emoji characters when cutting strings."

13 years agoam f664d6f9: am b083d3b8: Merge "Initialize resampling buffer per track."
Brad Fitzpatrick [Fri, 4 Feb 2011 18:30:40 +0000 (10:30 -0800)]
am f664d6f9: am b083d3b8: Merge "Initialize resampling buffer per track."

* commit 'f664d6f916516860d3e4cf82339d47c6f4fd24a2':
  Initialize resampling buffer per track.

13 years agoam b083d3b8: Merge "Initialize resampling buffer per track."
Brad Fitzpatrick [Fri, 4 Feb 2011 18:27:54 +0000 (10:27 -0800)]
am b083d3b8: Merge "Initialize resampling buffer per track."

* commit 'b083d3b816378ef3b9dceb33b2c2e20510b2632b':
  Initialize resampling buffer per track.

13 years agoMerge "Initialize resampling buffer per track."
Brad Fitzpatrick [Fri, 4 Feb 2011 18:19:06 +0000 (10:19 -0800)]
Merge "Initialize resampling buffer per track."

13 years agoInitialize resampling buffer per track.
Yuuhi Yamaguchi [Fri, 4 Feb 2011 14:24:34 +0000 (15:24 +0100)]
Initialize resampling buffer per track.

When resampling too short sound, AudioMixer uses previous
tracks buffer. So we re-initialize the temporary buffer per
loop to avoid it.

Change-Id: I55a59a3b14faa8445e09c450478fe79cef704760

13 years agoam 163c28b5: Merge "Managed dialogs should run on the same thread as their activity...
Joe Onorato [Fri, 4 Feb 2011 02:08:45 +0000 (18:08 -0800)]
am 163c28b5: Merge "Managed dialogs should run on the same thread as their activity." into gingerbread

* commit '163c28b5ca0a85be4c3f64c5419eb95fec4a6d43':
  Managed dialogs should run on the same thread as their activity.

13 years agoMerge "Managed dialogs should run on the same thread as their activity." into gingerbread
Joe Onorato [Fri, 4 Feb 2011 02:05:20 +0000 (18:05 -0800)]
Merge "Managed dialogs should run on the same thread as their activity." into gingerbread

13 years agoManaged dialogs should run on the same thread as their activity.
Joe Onorato [Fri, 4 Feb 2011 01:44:47 +0000 (17:44 -0800)]
Managed dialogs should run on the same thread as their activity.

Bug: 3418998
Change-Id: I9b1cf73f9d6f8a5594f405546fcaa3cfd6f03c45

13 years agofix [3421350] Killing a game that uses the accelerometer renders the device unable...
Mathias Agopian [Thu, 3 Feb 2011 22:52:47 +0000 (14:52 -0800)]
fix [3421350] Killing a game that uses the accelerometer renders the device unable to sleep

when an app dies, make sure to disable all sensors that process
is connected to, regardless of wether this was the LAST connection
to this sensor.

Change-Id: I400fa1c1389b2bd05a1d19abea8a35ec5bcba273

13 years agoam 40684946: Merge "Fix docs type that broke build." into gingerbread
Nick Pelly [Fri, 4 Feb 2011 00:32:29 +0000 (16:32 -0800)]
am 40684946: Merge "Fix docs type that broke build." into gingerbread

* commit '40684946cb00080c1c7424885f49a809816dd26e':
  Fix docs type that broke build.

13 years agoMerge "Fix docs type that broke build." into gingerbread
Nick Pelly [Fri, 4 Feb 2011 00:27:51 +0000 (16:27 -0800)]
Merge "Fix docs type that broke build." into gingerbread

13 years agoFix docs type that broke build.
Nick Pelly [Fri, 4 Feb 2011 00:06:53 +0000 (16:06 -0800)]
Fix docs type that broke build.

Change-Id: I5b5a2fc5baf95ace74bf90ff2c750ba890054d64

13 years agoam 6dbdcd55: am db71bda6: Merge from gingerbread
Jean-Baptiste Queru [Fri, 4 Feb 2011 00:21:47 +0000 (16:21 -0800)]
am 6dbdcd55: am db71bda6: Merge from gingerbread

* commit '6dbdcd55905e50e533d0d3d9abf735275bca68b6':

13 years agoam 779f7410: Merge "cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91...
Scott Main [Thu, 3 Feb 2011 23:56:02 +0000 (15:56 -0800)]
am 779f7410: Merge "cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91 update dashboard" into gingerbread

* commit '779f7410b35267fafb725061d76fc684cd77f26b':
  cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91 update dashboard

13 years agoam 630ac8df: Merge "NFC documentation overhaul." into gingerbread
Nick Pelly [Thu, 3 Feb 2011 23:55:53 +0000 (15:55 -0800)]
am 630ac8df: Merge "NFC documentation overhaul." into gingerbread

* commit '630ac8df2478cd0d47a90b95fbb13b9de4ad58b1':
  NFC documentation overhaul.

13 years agoMerge "cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91 update dashboa...
Scott Main [Thu, 3 Feb 2011 23:24:40 +0000 (15:24 -0800)]
Merge "cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91 update dashboard" into gingerbread

13 years agoam db71bda6: Merge from gingerbread
Jean-Baptiste Queru [Thu, 3 Feb 2011 23:24:24 +0000 (15:24 -0800)]
am db71bda6: Merge from gingerbread

* commit 'db71bda6f696aff6047e6c26c32e0c08bf6851bc':

13 years agoMerge "NFC documentation overhaul." into gingerbread
Nick Pelly [Thu, 3 Feb 2011 23:23:17 +0000 (15:23 -0800)]
Merge "NFC documentation overhaul." into gingerbread

13 years agocherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91
Scott Main [Thu, 3 Feb 2011 02:20:19 +0000 (18:20 -0800)]
cherrypick Change-Id: I6053e6f20045b0ecba4b964f9bfb87c3241d3a91
update dashboard

Change-Id: Iea5d441e417fc1a407c623ec2faf0cff90059592

13 years agoNFC documentation overhaul.
Nick Pelly [Thu, 3 Feb 2011 06:37:40 +0000 (22:37 -0800)]
NFC documentation overhaul.

Change-Id: I45dca95a24b2d0327e080436fbcc7b1dad79de02

13 years agoMerge from gingerbread
Jean-Baptiste Queru [Thu, 3 Feb 2011 22:25:27 +0000 (14:25 -0800)]
Merge from gingerbread

Change-Id: I6b895012db6b96666dc3257b1f2e430925981188