OSDN Git Service

android-x86/frameworks-base.git
14 years agoAdded a .amr file extractor (for AMR-NB and AMR-WB content).
Andreas Huber [Tue, 8 Sep 2009 23:07:15 +0000 (16:07 -0700)]
Added a .amr file extractor (for AMR-NB and AMR-WB content).

14 years agoMerge change 24179 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 17:55:48 +0000 (13:55 -0400)]
Merge change 24179 into eclair

* changes:
  Support encoding amr-wb content in stagefright.

14 years agoMerge change 24376 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 17:47:27 +0000 (13:47 -0400)]
Merge change 24376 into eclair

* changes:
  Query for all properties if a property change is received and cache is empty.

14 years agoRemove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInt...
Andrei Popescu [Wed, 9 Sep 2009 16:39:18 +0000 (17:39 +0100)]
Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.

14 years agoMerge change 24288 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 15:55:03 +0000 (11:55 -0400)]
Merge change 24288 into eclair

* changes:
  Do not cache POST response as Cache is indexed with url.

14 years agoFix sim-eng build.
Andy McFadden [Wed, 9 Sep 2009 15:00:09 +0000 (08:00 -0700)]
Fix sim-eng build.

Appears to have been broken by:

commit 9779b221e999583ff89e0dfc40e56398737adbb3
Author: Mathias Agopian <mathias@google.com>
Date:   Mon Sep 7 16:32:45 2009 -0700

    fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly

For some reason we don't like to have "-lpthread" globally -- it's a no-op
on device builds, but required for many host tools and all sim binaries --
so adding the use of pthread calls requires adding the library explicitly.

14 years agoMerge change 24335 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 10:29:19 +0000 (03:29 -0700)]
Merge change 24335 into eclair

* changes:
  use broadcast() instead of signal() when signaling the condition-variable Thread::RequestExitAndWait() is waiting for

14 years agoMerge change 24334 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 10:29:08 +0000 (03:29 -0700)]
Merge change 24334 into eclair

* changes:
  fix [2037525] Fail to start camera after adb sync new Camera

14 years agoMerge change 24333 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 10:28:47 +0000 (03:28 -0700)]
Merge change 24333 into eclair

* changes:
  rename Mutexes to make the code easier to follow

14 years agouse broadcast() instead of signal() when signaling the condition-variable Thread...
Mathias Agopian [Wed, 9 Sep 2009 09:38:13 +0000 (02:38 -0700)]
use broadcast() instead of signal() when signaling the condition-variable Thread::RequestExitAndWait() is waiting for

we could have several thread waiting on the condition and they all need to wake-up.
also added a debug "mTid" field in the class, which contains the tid of the thread (as opposed to pthread_t), this
is useful when debugging under gdb for instance.

14 years agofix [2037525] Fail to start camera after adb sync new Camera
Mathias Agopian [Wed, 9 Sep 2009 06:52:08 +0000 (23:52 -0700)]
fix [2037525] Fail to start camera after adb sync new Camera

we ended-up locking a Mutex that had been destroyed.
This happened because we gave an sp<Source> to the outside world,
and were called after LayerBuffer had been destroyed.

Instead we now give a wp<LayerBuffer> to the outside and have it
do the destruction.

14 years agoMerge change 24117 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 07:40:17 +0000 (00:40 -0700)]
Merge change 24117 into eclair

* changes:
  Replace the delimiter whitespace with '\0'.

14 years agoReplace the delimiter whitespace with '\0'.
Chung-yih Wang [Mon, 7 Sep 2009 19:52:45 +0000 (03:52 +0800)]
Replace the delimiter whitespace with '\0'.

+ Use '\0' as the delimiter.
+ Allow whitespace character for keystore password.

In previous implementation, we use space as the delimiter. That
will stop user from using passphrase with whitespace character.

14 years agoMerge change 24114 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 06:04:38 +0000 (23:04 -0700)]
Merge change 24114 into eclair

* changes:
  Fix issue 1992233: DTMF tones on Sholes is really long.

14 years agoFix issue 1992233: DTMF tones on Sholes is really long.
Eric Laurent [Mon, 7 Sep 2009 15:38:38 +0000 (08:38 -0700)]
Fix issue 1992233: DTMF tones on Sholes is really long.

Add a parameter to ToneGenerator.startTone() allowing the caller to specify the tone duration. This is used by the phone application to have a precise control on the DTMF tone duration which was not possible with the use of delayed messaged.
Also modified AudioFlinger output threads so that 0s are written to the audio output stream when no more tracks are ready to mix instead of just sleeping. This avoids an issue where the end of a previous DTMF tone could stay in audio hardware buffers and be played just before the beginning of the next DTMF tone.

14 years agoMerge change 24318 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 05:55:49 +0000 (22:55 -0700)]
Merge change 24318 into eclair

* changes:
  Avoid CDMA messages with IDs of zero.

14 years agoAvoid CDMA messages with IDs of zero.
Tammo Spalink [Wed, 9 Sep 2009 03:32:25 +0000 (11:32 +0800)]
Avoid CDMA messages with IDs of zero.

In reference to issue:
http://buganizer/issue?id=2047571

Change-Id: I88b5cdbb988f12206663bbb3fdc9508a437b19ad

14 years agorename Mutexes to make the code easier to follow
Mathias Agopian [Wed, 9 Sep 2009 03:02:47 +0000 (20:02 -0700)]
rename Mutexes to make the code easier to follow

14 years agoQuery for all properties if a property change is received and cache is empty.
Jaikumar Ganesh [Wed, 9 Sep 2009 04:37:32 +0000 (21:37 -0700)]
Query for all properties if a property change is received and cache is empty.

14 years agoMerge change 24316 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 04:00:29 +0000 (21:00 -0700)]
Merge change 24316 into eclair

* changes:
  Fix typo: IMMEDITATE -> IMMEDIATE

14 years agoMerge change 23414 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 02:41:13 +0000 (19:41 -0700)]
Merge change 23414 into eclair

* changes:
  Fix broken GSM SMS unit test, and general cleanup.

14 years agoDo not cache POST response as Cache is indexed with url.
Grace Kloba [Wed, 9 Sep 2009 01:31:26 +0000 (18:31 -0700)]
Do not cache POST response as Cache is indexed with url.

mRequestHandle is only set from Network. So we can skip checking whether url is Network url if mRequestHandle is not null.

Fix http://b/issue?id=1980031

14 years agoFix typo: IMMEDITATE -> IMMEDIATE
Omari Stephens [Wed, 9 Sep 2009 02:10:53 +0000 (19:10 -0700)]
Fix typo: IMMEDITATE -> IMMEDIATE

14 years ago modified: tests/MediaFrameworkTest/src/com/android/mediaframeworktest/MediaNames...
Yu Shan Emily Lau [Wed, 9 Sep 2009 01:55:01 +0000 (18:55 -0700)]
modified:   tests/MediaFrameworkTest/src/com/android/mediaframeworktest/MediaNames.java
Fixed the incorrect expected druation

14 years agoMerge change 24012 into eclair
Android (Google) Code Review [Wed, 9 Sep 2009 00:26:25 +0000 (17:26 -0700)]
Merge change 24012 into eclair

* changes:
  add a transaction monitor

14 years agoadd a transaction monitor
Fred Quintana [Thu, 3 Sep 2009 19:14:06 +0000 (12:14 -0700)]
add a transaction monitor

14 years agoMerge change 24220 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 23:58:33 +0000 (16:58 -0700)]
Merge change 24220 into eclair

* changes:
  Import revised translations.  DO NOT MERGE

14 years agoImport revised translations. DO NOT MERGE
Eric Fischer [Tue, 8 Sep 2009 23:23:44 +0000 (16:23 -0700)]
Import revised translations.  DO NOT MERGE

14 years agoMerge change 23924 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 23:30:42 +0000 (16:30 -0700)]
Merge change 23924 into eclair

* changes:
   new file:   LowStorageTest/Android.mk  new file:   LowStorageTest/AndroidManifest.xml  new file:   LowStorageTest/res/layout/main.xml  new file:   LowStorageTest/res/values/strings.xml  new file:   LowStorageTest/src/com/android/lowstoragetest/LowStorageTest.java Add the test app which can eat up 100% of the data parition. This is for the low storage test.

14 years agoMerge change 24194 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 22:33:50 +0000 (15:33 -0700)]
Merge change 24194 into eclair

* changes:
  Make the hardkeyboard long press dialog look the same as that of soft keyboard.

14 years agoMerge changes 24119,24120 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 21:36:06 +0000 (14:36 -0700)]
Merge changes 24119,24120 into eclair

* changes:
  delete old and unused source files
  fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly

14 years agoMake the hardkeyboard long press dialog look the same as that of soft keyboard.
Amith Yamasani [Tue, 8 Sep 2009 21:18:34 +0000 (14:18 -0700)]
Make the hardkeyboard long press dialog look the same as that of soft keyboard.

New assets for transparent buttons and background.

14 years ago new file: LowStorageTest/Android.mk
Yu Shan Emily Lau [Fri, 4 Sep 2009 00:07:43 +0000 (17:07 -0700)]
new file:   LowStorageTest/Android.mk
new file:   LowStorageTest/AndroidManifest.xml
new file:   LowStorageTest/res/layout/main.xml
new file:   LowStorageTest/res/values/strings.xml
new file:   LowStorageTest/src/com/android/lowstoragetest/LowStorageTest.java
Add the test app which can eat up 100% of the data parition. This is for the low storage test.

new file:   LowStorageTest/Android.mk
new file:   LowStorageTest/src/com/android/lowstoragetest/LowStorageTest.java

14 years agoSync status was ignoring account - the new UI has specific sync status for each accou...
Costin Manolache [Thu, 3 Sep 2009 01:03:05 +0000 (18:03 -0700)]
Sync status was ignoring account - the new UI has specific sync status for each account, so we need to use it.

14 years agoMerge change 24155 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 20:37:10 +0000 (13:37 -0700)]
Merge change 24155 into eclair

* changes:
  Add javadoc to explain which permissions are required for Public BT API's.

14 years agoMerge change 24183 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 20:30:19 +0000 (13:30 -0700)]
Merge change 24183 into eclair

* changes:
  Fix b/2105945 - Windowshade not closed when device locked.

14 years agoFix b/2105945 - Windowshade not closed when device locked.
Joe Onorato [Tue, 8 Sep 2009 20:24:36 +0000 (16:24 -0400)]
Fix b/2105945 - Windowshade not closed when device locked.

14 years agoMerge change 24086 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 20:21:39 +0000 (13:21 -0700)]
Merge change 24086 into eclair

* changes:
  Fixing asymmetry between phone filter and email filter APIs.

14 years agoMerge change 24178 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 20:07:45 +0000 (13:07 -0700)]
Merge change 24178 into eclair

* changes:
  The qcom decoder requires that the output buffers be allocated by the component for hardware accelerated display to work.

14 years agoSupport encoding amr-wb content in stagefright.
Andreas Huber [Tue, 8 Sep 2009 17:19:21 +0000 (10:19 -0700)]
Support encoding amr-wb content in stagefright.

14 years agoMerge change 24153 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 19:53:17 +0000 (12:53 -0700)]
Merge change 24153 into eclair

* changes:
  adding support for webkit plugins to use the java view system

14 years agoadding support for webkit plugins to use the java view system
Derek Sollenberger [Tue, 8 Sep 2009 17:01:56 +0000 (13:01 -0400)]
adding support for webkit plugins to use the java view system

Change-Id: I4fb328e5f30476fe4aa70565bacb969dc97b495d

14 years agoMerge change 24094 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 19:39:56 +0000 (12:39 -0700)]
Merge change 24094 into eclair

* changes:
  Add basic metadata retrieval support for midi, ogg, etc. Bug 2050320

14 years agoThe qcom decoder requires that the output buffers be allocated by the component for...
Andreas Huber [Fri, 4 Sep 2009 14:48:51 +0000 (07:48 -0700)]
The qcom decoder requires that the output buffers be allocated by the component for hardware accelerated display to work.

14 years agoMerge change 24161 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 18:29:28 +0000 (11:29 -0700)]
Merge change 24161 into eclair

* changes:
  don't fling if there's nowhere to go

14 years agodon't fling if there's nowhere to go
Cary Clark [Tue, 8 Sep 2009 18:15:07 +0000 (14:15 -0400)]
don't fling if there's nowhere to go

Add a test to doFling() to return quickly if the fling has
no effect. For simplicity, only test for horizontal or vertical
flings.

The man purpose is to avoid suspending webkit until the fling
animation is complete when the purpose of the touch drag is
to activate a touch event, like a swipe in superpudu.

fixes http://b/issue?id=2052852

14 years agoAdd basic metadata retrieval support for midi, ogg, etc.
James Dong [Sun, 6 Sep 2009 21:29:45 +0000 (14:29 -0700)]
Add basic metadata retrieval support for midi, ogg, etc.
Bug 2050320

14 years agodefault overview mode to false in webkit
Cary Clark [Tue, 8 Sep 2009 17:23:24 +0000 (13:23 -0400)]
default overview mode to false in webkit

Browser defaults overview mode to true in BrowserSettings.java,
but a WebView should default overview mode to false. This permits
applications without zoom interfaces, such as HTMLViewer, to
have the same interface as before.

14 years agoAdd javadoc to explain which permissions are required for Public BT API's.
Nick Pelly [Tue, 8 Sep 2009 17:12:06 +0000 (10:12 -0700)]
Add javadoc to explain which permissions are required for Public BT API's.

14 years agoRevert "Adding classes to enable plugins to use the java view system."
Derek Sollenberger [Tue, 8 Sep 2009 13:30:47 +0000 (09:30 -0400)]
Revert "Adding classes to enable plugins to use the java view system."

This reverts commit b127dc29bbe41dde9cb30e178bd252f48e84e533.

14 years agoMerge change 23485 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 12:48:06 +0000 (05:48 -0700)]
Merge change 23485 into eclair

* changes:
  Adding classes to enable plugins to use the java view system.

14 years agoMerge change 24097 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 08:23:05 +0000 (01:23 -0700)]
Merge change 24097 into eclair

* changes:
  Fix small bugs in VCardComposer.java.

14 years agoFix $#%^&%!! SDK build.
Dianne Hackborn [Tue, 8 Sep 2009 06:57:26 +0000 (23:57 -0700)]
Fix $#%^&%!! SDK build.

Change-Id: I03841e00d2d67af88fed716753aedabb5dbe48d9

14 years agoImplement all of the infrastructure for configuring wallpapers.
Dianne Hackborn [Mon, 7 Sep 2009 07:49:58 +0000 (00:49 -0700)]
Implement all of the infrastructure for configuring wallpapers.

Actually being able to configure a wallpaper relies on additional
work in the launcher and wallpapers that will be in another change.
Also note that this breaks all existing wallpapers, since they now
need to include a meta-data item about themselves.  This also
will be fixed in another change.

Change-Id: I97d2c2bd07237abc32f92b9147c32530a2f73c71

14 years agoMerge change 24101 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 04:02:29 +0000 (21:02 -0700)]
Merge change 24101 into eclair

* changes:
  Fix CDMA BCD unit test.

14 years agoMerge change 23413 into eclair
Android (Google) Code Review [Tue, 8 Sep 2009 03:55:08 +0000 (20:55 -0700)]
Merge change 23413 into eclair

* changes:
  Rename SMSTest to GsmSmsTest.

14 years agodelete old and unused source files
Mathias Agopian [Mon, 7 Sep 2009 23:33:36 +0000 (16:33 -0700)]
delete old and unused source files

14 years agofix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly
Mathias Agopian [Mon, 7 Sep 2009 23:32:45 +0000 (16:32 -0700)]
fix [2068105] implement queueBuffer/lockBuffer/dequeueBuffer properly

Rewrote SurfaceFlinger's buffer management from the ground-up.
The design now support an arbitrary number of buffers per surface, however the current implementation is limited to four. Currently only 2 buffers are used in practice.

The main new feature is to be able to dequeue all buffers at once (very important when there are only two).

A client can dequeue all buffers until there are none available, it can lock all buffers except the last one that is used for composition. The client will block then, until a new buffer is enqueued.

The current implementation requires that buffers are locked in the same order they are dequeued and enqueued in the same order they are locked. Only one buffer can be locked at a time.

eg. Allowed sequence:   DQ, DQ, LOCK, Q, LOCK, Q
eg. Forbidden sequence: DQ, DQ, LOCK, LOCK, Q, Q

14 years agoMerge change 24099 into eclair
Android (Google) Code Review [Mon, 7 Sep 2009 17:16:20 +0000 (10:16 -0700)]
Merge change 24099 into eclair

* changes:
  Fix issue #2095422: Some fades from opaque to transparent don't work

14 years agoMerge change 24098 into eclair
Android (Google) Code Review [Mon, 7 Sep 2009 17:14:44 +0000 (10:14 -0700)]
Merge change 24098 into eclair

* changes:
  Fix bug where we wouldn't release remote provider references.

14 years agoAdd Gservices constants for GlobalSearch settings
Bjorn Bringert [Fri, 4 Sep 2009 11:01:53 +0000 (12:01 +0100)]
Add Gservices constants for GlobalSearch settings

This is part of the implementation of http://b/issue?id=2097470

Change-Id: Ife3e5edd4c7d31824d75a0f93a6dcd56a39ab524

14 years agoFix small bugs in VCardComposer.java.
Daisuke Miyakawa [Mon, 7 Sep 2009 04:00:11 +0000 (13:00 +0900)]
Fix small bugs in VCardComposer.java.

- The logic for emitting "FN" is wrong.
- FileWriter's "double close" problem should occur in the current implementation.
- Let VCardParser_V31.java ignore AGENT field instead of throwing an unkind VCardNotSupportedException.

14 years agoMerge change 23415 into eclair
Android (Google) Code Review [Mon, 7 Sep 2009 10:25:56 +0000 (03:25 -0700)]
Merge change 23415 into eclair

* changes:
  Open some methods on PrefereneManager to allow others use the inflater.

14 years agoFix CDMA BCD unit test.
Tammo Spalink [Mon, 7 Sep 2009 07:45:09 +0000 (15:45 +0800)]
Fix CDMA BCD unit test.

Addresses issues:
http://buganizer/issue?id=2056263

Change-Id: I80e2412bd53b9045ae3cdc95cdf132da0946c2ea

14 years agoFix broken GSM SMS unit test, and general cleanup.
Tammo Spalink [Tue, 1 Sep 2009 07:01:12 +0000 (15:01 +0800)]
Fix broken GSM SMS unit test, and general cleanup.

Addresses issues:
http://buganizer/issue?id=2059500
http://buganizer/issue?id=2056263

Change-Id: If1cb1e2b326419de695cbaa8a995e6bafb56447f

14 years agoRename SMSTest to GsmSmsTest.
Tammo Spalink [Tue, 1 Sep 2009 06:59:55 +0000 (14:59 +0800)]
Rename SMSTest to GsmSmsTest.

Change-Id: I7ef602bd52167fd9f0712b1ce560e72a78f67193

14 years agoFix issue #2095422: Some fades from opaque to transparent don't work
Dianne Hackborn [Mon, 7 Sep 2009 04:08:27 +0000 (21:08 -0700)]
Fix issue #2095422: Some fades from opaque to transparent don't work

ViewRoot was using Surface.clear(), which has different behavior
in different processes -- in the system process it would kill the
surface, causing all windows in that process to immediately disappear
instead of animating away.

This change makes Surface.release() public and uses that instead.  It
also renames Surface.clear() to Surface.destroy().

Also fixed some issues in the window manager that were causing the
wallpaper to not get immediately resized when the orientation changes
and its target window is removed and re-added.

Change-Id: I2a992e365cf5747511f0bf1193db32dc2525b218

14 years agoFix bug where we wouldn't release remote provider references.
Dianne Hackborn [Wed, 2 Sep 2009 02:54:29 +0000 (19:54 -0700)]
Fix bug where we wouldn't release remote provider references.

The check for whether the release call is coming from another process was
very broken, and just happened to work by chance.  It also never worked for
apps that had code running in two different processes, with one process
using a provider in another of its processes.  Also a little cleanup and
debugging logs for provider management, and removal of that increasingly
annoying log about services being stopped.

Change-Id: Ibc298e674db7d35c4b6499fb32e30929a141b670

14 years agoMerge change 24060 into eclair
Android (Google) Code Review [Sun, 6 Sep 2009 23:41:35 +0000 (16:41 -0700)]
Merge change 24060 into eclair

* changes:
  Integrated the profiler into the framework. We run it all the time if the persist.sampling_profiler system property is set. Saves snapshots to the SD card.

14 years agoFixing asymmetry between phone filter and email filter APIs.
Dmitri Plotnikov [Sun, 6 Sep 2009 19:22:24 +0000 (12:22 -0700)]
Fixing asymmetry between phone filter and email filter APIs.

Also, introducing a more advanced email filter, which will do a proper name
lookup using the normalized name and avoid returning duplicate results.

Also, upgrading the phone filter to do the same thing as the email filter
but with display names and phone numbers.

14 years agodumpstate: Add the ctime (time the file was harvested out of /proc) to dump.
San Mehat [Sat, 5 Sep 2009 22:20:20 +0000 (15:20 -0700)]
dumpstate: Add the ctime (time the file was harvested out of /proc) to dump.

Signed-off-by: San Mehat <san@google.com>
14 years agoIntegrated the profiler into the framework. We run it all the time if the persist...
Bob Lee [Sat, 5 Sep 2009 01:31:17 +0000 (18:31 -0700)]
Integrated the profiler into the framework. We run it all the time if the persist.sampling_profiler
system property is set. Saves snapshots to the SD card.

14 years agoFix code placement and comments for gtalk url scraping settings.
Ye Wen [Sat, 5 Sep 2009 06:43:47 +0000 (23:43 -0700)]
Fix code placement and comments for gtalk url scraping settings.

14 years agoMerge change 24014 into eclair
Android (Google) Code Review [Sat, 5 Sep 2009 05:50:49 +0000 (22:50 -0700)]
Merge change 24014 into eclair

* changes:
  Gservices settings for controlling URL scraping in GTalk app.

14 years agoGservices settings for controlling URL scraping in GTalk app.
Ye Wen [Fri, 4 Sep 2009 21:10:36 +0000 (14:10 -0700)]
Gservices settings for controlling URL scraping in GTalk app.

14 years agoattempt to fix [2099362] Possible SurfaceFlinger crash
Mathias Agopian [Sat, 5 Sep 2009 02:50:23 +0000 (19:50 -0700)]
attempt to fix [2099362] Possible SurfaceFlinger crash

14 years agoMerge change 24039 into eclair
Android (Google) Code Review [Sat, 5 Sep 2009 01:30:46 +0000 (18:30 -0700)]
Merge change 24039 into eclair

* changes:
  Fixing a concurrency problem by changing the contact aggregation exception API.

14 years agoMerge change 24058 into eclair
Android (Google) Code Review [Sat, 5 Sep 2009 01:21:30 +0000 (18:21 -0700)]
Merge change 24058 into eclair

* changes:
  Minor perf improvement to fall and expand use of struct.

14 years agoMerge change 24057 into eclair
Android (Google) Code Review [Sat, 5 Sep 2009 01:21:18 +0000 (18:21 -0700)]
Merge change 24057 into eclair

* changes:
  checkpoint

14 years agoMinor perf improvement to fall and expand use of struct.
Jason Sams [Sat, 5 Sep 2009 01:19:46 +0000 (18:19 -0700)]
Minor perf improvement to fall and expand use of struct.

14 years agoMerge change 24048 into eclair
Android (Google) Code Review [Sat, 5 Sep 2009 01:17:15 +0000 (18:17 -0700)]
Merge change 24048 into eclair

* changes:
  fix [2098939] Smooth gradients show banding on Sholes

14 years agoFix point sprites.
Romain Guy [Sat, 5 Sep 2009 00:55:41 +0000 (17:55 -0700)]
Fix point sprites.

Change-Id: Ic9438daaf25f3969a0dd5b634b7cceccbbbfb27b

14 years agofix [2098939] Smooth gradients show banding on Sholes
Mathias Agopian [Sat, 5 Sep 2009 00:27:16 +0000 (17:27 -0700)]
fix [2098939] Smooth gradients show banding on Sholes

14 years agoam dac0d75a: Doc change only: Add sizes/checksums for SDK packages.
Dirk Dougherty [Fri, 4 Sep 2009 23:45:52 +0000 (16:45 -0700)]
am dac0d75a: Doc change only: Add sizes/checksums for SDK packages.

Merge commit 'dac0d75ad7fbd10981477b1fcc35c955185a41fd' into eclair

* commit 'dac0d75ad7fbd10981477b1fcc35c955185a41fd':
  Doc change only: Add sizes/checksums for SDK packages.

14 years agoDoc change only: Add sizes/checksums for SDK packages.
Dirk Dougherty [Fri, 4 Sep 2009 22:36:45 +0000 (15:36 -0700)]
Doc change only: Add sizes/checksums for SDK packages.

Change-Id: I11a38fb4002d72cf69ea545bd395b0f97b8caa66

14 years agocheckpoint
Jason Sams [Fri, 4 Sep 2009 23:00:28 +0000 (16:00 -0700)]
checkpoint

14 years agoFixing a concurrency problem by changing the contact aggregation exception API.
Dmitri Plotnikov [Fri, 4 Sep 2009 22:59:05 +0000 (15:59 -0700)]
Fixing a concurrency problem by changing the contact aggregation exception API.

The current API requires a contact_id and a raw_contact_id
There are at least two issues with this approach I did not recognize initially:

1. Contact_id may be changed asynchronously by aggregation or some other process.
2. A raw contacts may need to be added to an aggregate before the actual aggregation pass
has gotten to it, so the client would need to wait for the aggregation to complete
before it can set an aggregation exception.  That's backwards.

14 years agoMerge change 24029 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 22:58:02 +0000 (15:58 -0700)]
Merge change 24029 into eclair

* changes:
  Fix mncLength in cases with a malformed AD_DONE msg from SIM

14 years agoMerge change 24020 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 22:40:30 +0000 (15:40 -0700)]
Merge change 24020 into eclair

* changes:
  Wallpapers: new transitions, hiding when not visible, other cleanup.

14 years agoMerge change 24024 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 22:39:46 +0000 (15:39 -0700)]
Merge change 24024 into eclair

* changes:
  Remove "predefined" elements from Java layer.  Static elements continue to exist but are no longer treated as a special version of element.

14 years agoMerge change 24002 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 22:16:25 +0000 (15:16 -0700)]
Merge change 24002 into eclair

* changes:
  Fix SparseArray accesses

14 years agoFix mncLength in cases with a malformed AD_DONE msg from SIM
Robert Greenwalt [Fri, 4 Sep 2009 22:08:37 +0000 (15:08 -0700)]
Fix mncLength in cases with a malformed AD_DONE msg from SIM

Several cases error out and skip our guessing of the mcnLength.  This
results in no operator_numeric being set and no APN's matching.

bug: 2101770

14 years agoWhen zooming, do not draw the WebTextView. Resize it when done.
Leon Scroggins [Thu, 3 Sep 2009 14:06:04 +0000 (10:06 -0400)]
When zooming, do not draw the WebTextView.  Resize it when done.

Fix for issue http://b/issue?id=2074429

Change-Id: Iae46df57310a360f07c9d6afef24ca3ff9d04bdc

14 years agoRemove "predefined" elements from Java layer. Static elements continue to exist...
Jason Sams [Fri, 4 Sep 2009 21:42:41 +0000 (14:42 -0700)]
Remove "predefined" elements from Java layer.  Static elements continue to exist but are no longer treated as a special version of element.

14 years agoMerge change 24008 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 21:38:20 +0000 (14:38 -0700)]
Merge change 24008 into eclair

* changes:
  Clean up from earlier changes to place title bar at top of WebView

14 years agoMerge change 23907 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 21:30:29 +0000 (14:30 -0700)]
Merge change 23907 into eclair

* changes:
  Add sync_details support.

14 years agoWallpapers: new transitions, hiding when not visible, other cleanup.
Dianne Hackborn [Fri, 4 Sep 2009 21:21:19 +0000 (14:21 -0700)]
Wallpapers: new transitions, hiding when not visible, other cleanup.

This is work on the transitions with wallpapers.  There are now new
animations specifically for leaving the wallpaper and returning to
it, which allow us to have a consistent animation when entering home
and returning to it.  I also renamed the existing animations across
wallpapers, and cleaned up some junk in the various interpolators.

This also now hides the wallpaper surface when it is not visible,
to get rid of the wallpaper flickers people complained about albeit
in a somewhat brutal way. :)  (Though really returning us to the
previous behavior with the same previous bugs and name back to them
not being very visible, yay!)  There is are also some bug fixes
here and there about managing the wallpaper visibility that this
change revealed.

Change-Id: I913990a9a81651728122ed2e1101b75ed2c36fcb

14 years agoMerge change 24010 into eclair
Android (Google) Code Review [Fri, 4 Sep 2009 21:24:00 +0000 (14:24 -0700)]
Merge change 24010 into eclair

* changes:
  Don't toggle between in app and global search on repeat key events.

14 years agoClean up from earlier changes to place title bar at top of WebView
Leon Scroggins [Fri, 4 Sep 2009 20:58:09 +0000 (16:58 -0400)]
Clean up from earlier changes to place title bar at top of WebView

Rename addTitleBar to setEmbeddedTitleBar.  This requires a change
to packages/apps/Browser.  Also remove mTitleBar if there already
was one.

In ViewManager, call contentToViewDimension where appropriate.

Change-Id: If4d378fad192990253411924a9a80bee96e63ff2

14 years agoDon't toggle between in app and global search on repeat key events.
Karl Rosaen [Fri, 4 Sep 2009 21:05:17 +0000 (14:05 -0700)]
Don't toggle between in app and global search on repeat key events.

Fixes http://b/issue?id=2019231.