OSDN Git Service

android-x86/frameworks-base.git
12 years agoam ca5c8813: Merge "SystemUI: Disable HW acceleration for status bar" into ics-mr0
Jamie Gennis [Fri, 11 Nov 2011 08:02:26 +0000 (08:02 +0000)]
am ca5c8813: Merge "SystemUI: Disable HW acceleration for status bar" into ics-mr0

* commit 'ca5c881374d051361eb5f9a191d51b5716ef2366':
  SystemUI: Disable HW acceleration for status bar

12 years agoMerge "Clamp non-monotonic stats instead of dropping." into ics-mr1
Jeff Sharkey [Fri, 11 Nov 2011 04:31:03 +0000 (20:31 -0800)]
Merge "Clamp non-monotonic stats instead of dropping." into ics-mr1

12 years agoMerge "Fold WiMAX state into the mobile RSSI." into ics-mr1
Daniel Sandler [Fri, 11 Nov 2011 04:16:47 +0000 (20:16 -0800)]
Merge "Fold WiMAX state into the mobile RSSI." into ics-mr1

12 years agoMerge "Remove dedicated wimax icon to fix RSSI layout." into ics-mr1
Daniel Sandler [Fri, 11 Nov 2011 04:16:38 +0000 (20:16 -0800)]
Merge "Remove dedicated wimax icon to fix RSSI layout." into ics-mr1

12 years agoMerge "Make the overridden ImageView#setVisibility remotable" into ics-mr1
Adam Powell [Fri, 11 Nov 2011 03:56:03 +0000 (19:56 -0800)]
Merge "Make the overridden ImageView#setVisibility remotable" into ics-mr1

12 years agoMake the overridden ImageView#setVisibility remotable
Adam Powell [Fri, 11 Nov 2011 03:48:23 +0000 (19:48 -0800)]
Make the overridden ImageView#setVisibility remotable

Change-Id: Idaf061ea8c2a06ec8abaf74cf865446d9092afa2

12 years agoMerge "Deferring wallpaper update to improve workspace scrolling (issue 5506959)...
Adam Cohen [Fri, 11 Nov 2011 03:27:58 +0000 (19:27 -0800)]
Merge "Deferring wallpaper update to improve workspace scrolling (issue 5506959)" into ics-mr1

12 years agoMerge "Fix lastVisible/global rects" into ics-mr1
John Reck [Fri, 11 Nov 2011 01:58:27 +0000 (17:58 -0800)]
Merge "Fix lastVisible/global rects" into ics-mr1

12 years agoClamp non-monotonic stats instead of dropping.
Jeff Sharkey [Fri, 11 Nov 2011 01:54:23 +0000 (17:54 -0800)]
Clamp non-monotonic stats instead of dropping.

When encountering non-monotonic stats rows, recover remaining data by
clamping to 0.  In particular, this avoids edge-case where persisting
threshold checks would never trigger.  Also recover when tethering
snapshots are missing.

Bug: 560078554338715600678
Change-Id: I1871954ce3955cc4ac8846f9841bae0066176ffe

12 years agoMerge "Fix NdefRecord byte-stream constructor." into ics-mr1
Martijn Coenen [Fri, 11 Nov 2011 01:40:20 +0000 (17:40 -0800)]
Merge "Fix NdefRecord byte-stream constructor." into ics-mr1

12 years agoMerge "Fix leak in LayoutTransition" into ics-mr1
Chet Haase [Fri, 11 Nov 2011 01:33:31 +0000 (17:33 -0800)]
Merge "Fix leak in LayoutTransition" into ics-mr1

12 years agoFix lastVisible/global rects
John Reck [Fri, 11 Nov 2011 01:33:24 +0000 (17:33 -0800)]
Fix lastVisible/global rects

 Bug: 5601629
 References tend to always be equal to the things they are referencing,
 use copies instead.

Change-Id: I0827878e91ef1fa6e0abe2d6499d55f4a211d890

12 years agoMerge "Fix Wimax-less build." into ics-mr1
Robert Greenwalt [Fri, 11 Nov 2011 01:22:14 +0000 (17:22 -0800)]
Merge "Fix Wimax-less build." into ics-mr1

12 years agoFix Wimax-less build.
Robert Greenwalt [Fri, 11 Nov 2011 00:55:20 +0000 (16:55 -0800)]
Fix Wimax-less build.

A build with the wimax network type defined but wimax disabled
causes an NPE in ConnectivityService's constructor.

bug:5237167
Change-Id: I929eac217e1afa0e61346fdbc3e96a7d3ad09a54

12 years agoMerge "Terminate EGL when an app goes in the background" into ics-mr1
Romain Guy [Fri, 11 Nov 2011 01:10:41 +0000 (17:10 -0800)]
Merge "Terminate EGL when an app goes in the background" into ics-mr1

12 years agoFix leak in LayoutTransition
Chet Haase [Fri, 11 Nov 2011 01:03:12 +0000 (17:03 -0800)]
Fix leak in LayoutTransition

LayoutTransition was making an incorrect assumption that there could
only be one transition animation on a child of a transitioning container.
But if multiple children are added/removed to/from that container, there would
be multiple calls to set up changing animations for each existing child
of that container. This meant that the child would have multiple, new
OnLayoutChangeListeners added to it as part of the setup process.

Meanwhile, we would cache only the latest listener in a hashmap that used
the child as a key for the listener. Then when we cleaned up the hashmap later,
we would remove only the latest listener from the child, leaving the rest there
for eternity.

The fix is to skip the setup entirely for children that already have listeners
set on them; they must, if that's the case, already have been set up and are
already listening for layout changes. Setting up the animation is redundant,
and adding another listener is a leak.

issue #5588509: memory leak in systemui

Change-Id: I2c9f312cc2bcf4f2d08ac6b5d8f8e495aa4f3597

12 years agoDeferring wallpaper update to improve workspace scrolling (issue 5506959)
Adam Cohen [Thu, 10 Nov 2011 04:10:27 +0000 (20:10 -0800)]
Deferring wallpaper update to improve workspace scrolling (issue 5506959)

-> On the Xoom, this change gets us back up to 60 fps. The
   change is really more of a workaround for the fact that we don't
   have vsync, and we ought to be able to change it back once we do.

Change-Id: I80888f18887bf5f2fed72c19641ed430ef6dbfcf

12 years agoTerminate EGL when an app goes in the background
Romain Guy [Thu, 10 Nov 2011 04:10:18 +0000 (20:10 -0800)]
Terminate EGL when an app goes in the background

This does not happen on high end gfx devices. This happens
only if only one EGL context is initialized in the current
process.

Change-Id: Ibd1737efdf84eef8a84108b05795440d1ae9964e

12 years agoMerge "boot animation is dithered and scaled" into ics-mr1
Mathias Agopian [Fri, 11 Nov 2011 00:38:42 +0000 (16:38 -0800)]
Merge "boot animation is dithered and scaled" into ics-mr1

12 years agoMerge "SystemUI: Disable HW acceleration for status bar" into ics-mr0
Jamie Gennis [Fri, 11 Nov 2011 00:06:12 +0000 (16:06 -0800)]
Merge "SystemUI: Disable HW acceleration for status bar" into ics-mr0

12 years agoboot animation is dithered and scaled
Mathias Agopian [Thu, 10 Nov 2011 23:59:07 +0000 (15:59 -0800)]
boot animation is dithered and scaled

disable dithering which shouldn't have been enabled
in the first place because the frames are typically scaled.
we still use a 16-bits texture format to preserve memory.

Bug: 5600948
Change-Id: Ib4d6e133df4375d0d735cd4325b6e589bbc5dafe

12 years agoFix NdefRecord byte-stream constructor.
Martijn Coenen [Thu, 10 Nov 2011 23:20:14 +0000 (15:20 -0800)]
Fix NdefRecord byte-stream constructor.

Bug: 5601404
Change-Id: I30fada97487829a8b2ccc1a1e7a32837c29ddd70

12 years agoMerge "Initialize egl_cache with an app writeable file" into ics-mr1
Romain Guy [Thu, 10 Nov 2011 23:02:07 +0000 (15:02 -0800)]
Merge "Initialize egl_cache with an app writeable file" into ics-mr1

12 years agoMerge "Wake on volume key when in dock. Bug: 5580373" into ics-mr1
Jeff Brown [Thu, 10 Nov 2011 22:40:48 +0000 (14:40 -0800)]
Merge "Wake on volume key when in dock. Bug: 5580373" into ics-mr1

12 years agoWake on volume key when in dock.
Jeff Brown [Wed, 9 Nov 2011 04:22:03 +0000 (20:22 -0800)]
Wake on volume key when in dock.
Bug: 5580373

Change-Id: I847fb10b48c2e5e26cabefea1d630793efc32131

12 years agoMerge "lock pattern width spec set to max" into ics-mr1
Peter Ng [Thu, 10 Nov 2011 22:31:09 +0000 (14:31 -0800)]
Merge "lock pattern width spec set to max" into ics-mr1

12 years agoMerge "Cleaning up tablet assets by deleting drawable-xlarge and large folders" into...
Peter Ng [Thu, 10 Nov 2011 22:26:57 +0000 (14:26 -0800)]
Merge "Cleaning up tablet assets by deleting drawable-xlarge and large folders" into ics-mr1

12 years agoCleaning up tablet assets by deleting drawable-xlarge and large folders
Peter Ng [Thu, 10 Nov 2011 01:46:27 +0000 (17:46 -0800)]
Cleaning up tablet assets by deleting drawable-xlarge and large folders

-keeping default wallpaper in xlarge-nodpi

Bug:5596158

Change-Id: I18ec8b0aa648fa95a1f6ebb4380c630f05e24ecb

12 years agoam 921afe39: Doc change: new Calendar content provider doc
Katie McCormick [Thu, 10 Nov 2011 22:20:37 +0000 (22:20 +0000)]
am 921afe39: Doc change: new Calendar content provider doc

* commit '921afe39d6041b06c6a002b08f9dcd1561a9ae99':
  Doc change: new Calendar content provider doc

12 years agoInitialize egl_cache with an app writeable file
Romain Guy [Thu, 10 Nov 2011 22:20:10 +0000 (14:20 -0800)]
Initialize egl_cache with an app writeable file

Change-Id: I5dda234feab0fedd6e4179a80715ae20dee1c833

12 years agoMerge "Fix access modifiers on ImageView overrides" into ics-mr1
Adam Powell [Thu, 10 Nov 2011 22:16:45 +0000 (14:16 -0800)]
Merge "Fix access modifiers on ImageView overrides" into ics-mr1

12 years agoMerge "Fix issue #5470311: Activity with android:configChanges defined..." into ics-mr1
Dianne Hackborn [Thu, 10 Nov 2011 22:12:25 +0000 (14:12 -0800)]
Merge "Fix issue #5470311: Activity with android:configChanges defined..." into ics-mr1

12 years agoFix access modifiers on ImageView overrides
Adam Powell [Thu, 10 Nov 2011 22:11:51 +0000 (14:11 -0800)]
Fix access modifiers on ImageView overrides

Change-Id: I64cc10c877ac4adc4b79abcd7c7617480bd82906

12 years agoMerge "Fix bug 5581874 - Animated drawables don't start as expected" into ics-mr1
Adam Powell [Thu, 10 Nov 2011 21:57:24 +0000 (13:57 -0800)]
Merge "Fix bug 5581874 - Animated drawables don't start as expected" into ics-mr1

12 years agoMerge "Revert "Remove deprecated (hidden) enableForegroundNdefPush API's." (DO NOT...
Martijn Coenen [Thu, 10 Nov 2011 21:48:02 +0000 (13:48 -0800)]
Merge "Revert "Remove deprecated (hidden) enableForegroundNdefPush API's." (DO NOT MERGE)." into ics-mr1

12 years agoMerge "increase the rate at which we dispatch events." into ics-mr1
Chet Haase [Thu, 10 Nov 2011 21:44:34 +0000 (13:44 -0800)]
Merge "increase the rate at which we dispatch events." into ics-mr1

12 years agoRevert "Remove deprecated (hidden) enableForegroundNdefPush API's." (DO NOT MERGE).
Martijn Coenen [Thu, 10 Nov 2011 21:18:53 +0000 (13:18 -0800)]
Revert "Remove deprecated (hidden) enableForegroundNdefPush API's." (DO NOT MERGE).

This reverts commit 562dfff65ac79590c0b7c50019cd3d107e8b4e0e. These API's are still used
by GMM in the version that ships with MR1, so we need them to keep Beam working for
GMM. Note that these APIs are hidden.

From version 5.13 onwards GMM will use the new API's.

Change-Id: I316a9c9b7d0052a14f6c1df70f2ed463bca61800

12 years agoMerge "Close file on exception as well" into ics-mr1
Kenny Root [Thu, 10 Nov 2011 21:18:24 +0000 (13:18 -0800)]
Merge "Close file on exception as well" into ics-mr1

12 years agoMerge "Revert "Add new secure setting for controlling Messaging notifications"" into...
Tom Taylor [Thu, 10 Nov 2011 21:11:16 +0000 (13:11 -0800)]
Merge "Revert "Add new secure setting for controlling Messaging notifications"" into ics-mr1

12 years agoMerge "Add a sound-playing method to Camera API." into ics-mr1
Eino-Ville Talvala [Thu, 10 Nov 2011 20:07:05 +0000 (12:07 -0800)]
Merge "Add a sound-playing method to Camera API." into ics-mr1

12 years agoFix bug 5581874 - Animated drawables don't start as expected
Adam Powell [Thu, 10 Nov 2011 19:32:09 +0000 (11:32 -0800)]
Fix bug 5581874 - Animated drawables don't start as expected

Fix a bug that caused animated drawables to not schedule properly when
a view has not yet been attached. Also make ImageViews update their
drawable visibility state properly, which will handle scheduling
concerns as ImageViews are attached and detached from their windows.

This should also fix the bug where animated notification icons in the
status bar do not animate until the posting app posts an update to the
notification.

Change-Id: I24c403182831258d1f251736e920c9efe1d38299

12 years agoFix issue #5470311: Activity with android:configChanges defined...
Dianne Hackborn [Thu, 10 Nov 2011 19:19:57 +0000 (11:19 -0800)]
Fix issue #5470311: Activity with android:configChanges defined...

...should not be restarted when rotating screen on xoom

This was a side-effect of a previous fix to compute the screen layout
config class based on the actual space available to the application, not
the raw display size.  On a device like Xoom, the system bar causes us
to switch between LONG and NOTLONG depending on whether the system bar
is on the short or long side of the screen.

To fix this, we now compute the screen layout class the same way
"smallest width" is computed: looking at all of the possible rotations
and using the smallest of them all.  In addition to preventing the device
from toggling between long and notlong on a Xoom-like screen, this will
also avoid other possible undersireable behavior like changing screen
layout size when rotating.

This does mean that Xoom is no longer considered a long screen even when
in landscape, because it is not a long screen in portrait.

Change-Id: I85f90a16294ef5a7de94d5b9231abbc6f914fe90

12 years agoRevert "Add new secure setting for controlling Messaging notifications"
Tom Taylor [Thu, 10 Nov 2011 19:17:38 +0000 (11:17 -0800)]
Revert "Add new secure setting for controlling Messaging notifications"

This reverts commit 03da2f00aac04e6565a02cf5a9bf6bb1ec926930.

 Committer: Tom Taylor <tomtaylor@google.com>

 On branch revertsetting
 Changes to be committed:
   (use "git reset HEAD <file>..." to unstage)

modified:   api/current.txt
modified:   core/java/android/provider/Settings.java
modified:   core/java/android/provider/Telephony.java
modified:   packages/SettingsProvider/res/values/defaults.xml
modified:   packages/SettingsProvider/src/com/android/providers/settings/DatabaseHelper.java

We've decided not to disable messaging notifications with a secure setting.
Instead, all the work will be done within the messaging app itself.

Change-Id: Icde6894e76da1007b6026c8ec7dc56e488453c06

12 years agoDoc change: new Calendar content provider doc
Katie McCormick [Wed, 19 Oct 2011 00:51:56 +0000 (17:51 -0700)]
Doc change: new Calendar content provider doc

Change-Id: I9493b6b0cd17ddf8fda07c32aed9b4fa2b8c1489

12 years agoMerge "handle EINTR when calling sensor HAL's poll function" into ics-mr1
Mathias Agopian [Thu, 10 Nov 2011 18:33:55 +0000 (10:33 -0800)]
Merge "handle EINTR when calling sensor HAL's poll function" into ics-mr1

12 years agoAdd a sound-playing method to Camera API.
Eino-Ville Talvala [Tue, 8 Nov 2011 18:12:09 +0000 (10:12 -0800)]
Add a sound-playing method to Camera API.

To allow applications with non-standard Camera use cases to use the
platform sound files and routing, add a method to play any of the
standard Camera sounds (shutter, autofocus, record start/stop) using a
background thread.

Bug: 5447107
Change-Id: I2524853a626e3ce334a7aad2f7de061d5c04abd0

12 years agoClose file on exception as well
Kenny Root [Thu, 10 Nov 2011 17:35:38 +0000 (09:35 -0800)]
Close file on exception as well

Bug: 5458045
Change-Id: I4c79b9c273ff69dda292e5cc7b2b60f8db2edbd9

12 years agoMerge "Pause drawing when not visible" into ics-mr1
John Reck [Thu, 10 Nov 2011 17:19:55 +0000 (09:19 -0800)]
Merge "Pause drawing when not visible" into ics-mr1

12 years agoMerge "Send RTSP control connection keep-alive requests" into ics-mr1
Andreas Huber [Thu, 10 Nov 2011 16:48:44 +0000 (08:48 -0800)]
Merge "Send RTSP control connection keep-alive requests" into ics-mr1

12 years agoMerge "Don't believe the PV decoder's lies..." into ics-mr1
Andreas Huber [Thu, 10 Nov 2011 16:48:34 +0000 (08:48 -0800)]
Merge "Don't believe the PV decoder's lies..." into ics-mr1

12 years agoMerge "There's no point in trying to continue to decode after an error was signalled...
Andreas Huber [Thu, 10 Nov 2011 16:47:25 +0000 (08:47 -0800)]
Merge "There's no point in trying to continue to decode after an error was signalled." into ics-mr1

12 years agoMerge "DO NOT MERGE Set the initial scroll position for RTL." into ics-mr1
George Mount [Thu, 10 Nov 2011 16:32:18 +0000 (08:32 -0800)]
Merge "DO NOT MERGE Set the initial scroll position for RTL." into ics-mr1

12 years agoMerge "Fix problems in tablet silent mode." into ics-mr1
Eric Laurent [Thu, 10 Nov 2011 16:28:58 +0000 (08:28 -0800)]
Merge "Fix problems in tablet silent mode." into ics-mr1

12 years agoincrease the rate at which we dispatch events.
Chet Haase [Thu, 10 Nov 2011 01:48:54 +0000 (17:48 -0800)]
increase the rate at which we dispatch events.

Previously, the input dispatch rate was capped by default to 55.
This worked fine for systems with a refresh rate of 55 or lower. But on
devices with a higher frame rate (such as stingray at 60 fps), we do not
receive events as fast as the rendering system wants to redraw the frames, so
we would occasionally miss events between frames, resulting in a visual
stutter during drag operations where the dragged object would essentially
stay still for a frame.

This fix increases the default rate to 90, or 1.5 times the highest typical
refresh rate of our devices.

Change-Id: Id8622185b3da93f9f6505157d2e6f3f33e36bd04

12 years agoam e562287c: Merge "[maguro] Update COMPREHENSION-TLV parser in CAT" into ics-mr0
Wink Saville [Thu, 10 Nov 2011 15:22:35 +0000 (15:22 +0000)]
am e562287c: Merge "[maguro] Update COMPREHENSION-TLV parser in CAT" into ics-mr0

* commit 'e562287c85662457864255028cd4bc3b04f13750':
  [maguro] Update COMPREHENSION-TLV parser in CAT

12 years agoMerge "[maguro] Update COMPREHENSION-TLV parser in CAT" into ics-mr0
Wink Saville [Thu, 10 Nov 2011 15:20:55 +0000 (07:20 -0800)]
Merge "[maguro] Update COMPREHENSION-TLV parser in CAT" into ics-mr0

12 years agoMerge "Visual glitches when starting extracted text" into ics-mr1
Gilles Debunne [Thu, 10 Nov 2011 08:48:10 +0000 (00:48 -0800)]
Merge "Visual glitches when starting extracted text" into ics-mr1

12 years agoam b9619430: (-s ours) Merge "Actually 59 fps DO NOT MERGE" into ics-mr0
Dave Burke [Thu, 10 Nov 2011 07:59:32 +0000 (07:59 +0000)]
am b9619430: (-s ours) Merge "Actually 59 fps DO NOT MERGE" into ics-mr0

* commit 'b96194308dc8678e99564f038872061e4881e65a':
  Actually 59 fps DO NOT MERGE

12 years agoMerge "Actually 59 fps DO NOT MERGE" into ics-mr0
Dave Burke [Thu, 10 Nov 2011 07:58:09 +0000 (23:58 -0800)]
Merge "Actually 59 fps DO NOT MERGE" into ics-mr0

12 years agoActually 59 fps DO NOT MERGE
Dave Burke [Thu, 10 Nov 2011 07:50:45 +0000 (23:50 -0800)]
Actually 59 fps DO NOT MERGE

Change-Id: Ic70dbba81c054eaaf21f71b10e329ebf1424d4a2

12 years agoMerge "Back to 59fps" into ics-mr1
Dave Burke [Thu, 10 Nov 2011 07:49:09 +0000 (23:49 -0800)]
Merge "Back to 59fps" into ics-mr1

12 years agoFold WiMAX state into the mobile RSSI.
Daniel Sandler [Thu, 10 Nov 2011 05:15:38 +0000 (00:15 -0500)]
Fold WiMAX state into the mobile RSSI.

WiMAX will now be shown like any other 4G network.

Bug: 5584528
Change-Id: I33ef7b34b88ca006ce77a7ff1e55b7b38648d7d8

12 years agoMerge "Introduce an API to cancel pending/running spell check tasks" into ics-mr1
satok [Thu, 10 Nov 2011 05:26:46 +0000 (21:26 -0800)]
Merge "Introduce an API to cancel pending/running spell check tasks" into ics-mr1

12 years agoRemove dedicated wimax icon to fix RSSI layout.
Daniel Sandler [Wed, 9 Nov 2011 21:49:44 +0000 (16:49 -0500)]
Remove dedicated wimax icon to fix RSSI layout.

We'll bring the wimax information back, but as part of the
mobile data indicator.

Bug: 5592198
Change-Id: I7d797db18b2d86ea4b8609642c6e09a5b2425459

12 years agoMerge "Use platform assets for brightness scrubber." into ics-mr1
Daniel Sandler [Thu, 10 Nov 2011 04:41:03 +0000 (20:41 -0800)]
Merge "Use platform assets for brightness scrubber." into ics-mr1

12 years agoam 16ee60a5: Merge "Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes."...
Wink Saville [Thu, 10 Nov 2011 03:42:09 +0000 (03:42 +0000)]
am 16ee60a5: Merge "Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes." into ics-mr0

* commit '16ee60a5ae0336a46a417a72bca64a1a04b0fce2':
  Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes.

12 years agoMerge "Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes." into ics-mr0
Wink Saville [Thu, 10 Nov 2011 03:39:39 +0000 (19:39 -0800)]
Merge "Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes." into ics-mr0

12 years agoIncrease DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes.
Wink Saville [Thu, 10 Nov 2011 02:53:08 +0000 (18:53 -0800)]
Increase DATA_STALL_ALARM_DELAY_IN_MS_DEFAULT to 6 minutes.

Initially set to 3 minutes this raised the standby current
by 12.5% so changing to 6 minutes.

Bug: 5534004
Change-Id: I602f5fe4de35d0db2dbacf0c615c300c57dd2d0d

12 years agoIntroduce an API to cancel pending/running spell check tasks
satok [Wed, 2 Nov 2011 19:12:51 +0000 (04:12 +0900)]
Introduce an API to cancel pending/running spell check tasks

Bug: 5554629

Change-Id: Ifd840ea13976813639a2ee259124a21d9bb56893

12 years agoMerge "Respect user settings for spell checking language if explicitly set" into...
satok [Thu, 10 Nov 2011 02:42:48 +0000 (18:42 -0800)]
Merge "Respect user settings for spell checking language if explicitly set" into ics-mr1

12 years agoFix problems in tablet silent mode.
Eric Laurent [Tue, 8 Nov 2011 18:31:57 +0000 (10:31 -0800)]
Fix problems in tablet silent mode.

Do not enter silent mode when ALARM stream volume is changed
to 0 by volume down key: Only RING, NOTIFICATION and MUSIC
streams control silent mode.

Report correct volume (0) for NOTIFICATION stream when silent mode
is entered by changing NOTIFICATION stream volume to 0 with
volume down key.

Change-Id: I3e0816dfae40bc127cc30cca02cdca6ec19e30a4

12 years agoBack to 59fps
Dave Burke [Thu, 10 Nov 2011 00:39:21 +0000 (16:39 -0800)]
Back to 59fps

Change-Id: I8d89e5e27f1abc5a2e36cb832eb4db2ca83c2cc6

12 years agohandle EINTR when calling sensor HAL's poll function
Mathias Agopian [Thu, 10 Nov 2011 01:50:15 +0000 (17:50 -0800)]
handle EINTR when calling sensor HAL's poll function

some sensor HALs don't handle EINTR, make sure to catch it in the
sensorservice.

also if we ever encounter an error that we can't handle, we abort
which will restart us (or the whole system process if we're running
in it)

Bug: 5511741
Change-Id: I7051882b06980f778736b53d6cd021a99b5ca8d2

12 years ago[maguro] Update COMPREHENSION-TLV parser in CAT
Wink Saville [Thu, 10 Nov 2011 01:31:34 +0000 (17:31 -0800)]
[maguro] Update COMPREHENSION-TLV parser in CAT

1. Fix the ClassCastException while handling spec out 'Setup menu'
   -Ghana MTN simcard and JDI simcard sends abnormal 'setup menu'cmd.
   -Those 'setup menu' is spec out.
   -At the end of the proactive cmd,extra bytes '0x00 0x00 0x00 0x00' is
   followed.
   - That cause ClassCastException and phone crash.

Bug: 5574160
Change-Id: Ieafb6c4efd94bb4e2a39a04612a6761c958654bb
Signed-off-by: dujin.cha <dujin.cha@samsung.com>
12 years agoPause drawing when not visible
John Reck [Thu, 10 Nov 2011 00:23:07 +0000 (16:23 -0800)]
Pause drawing when not visible

 Bug: 5594608
 If onPause is called or if the view or view's window is no longer
 visible, pause webview drawing. Calls to onDraw will continue to work,
 but animations and other continual drawing will stop

Change-Id: I11640f087852d1a9a33b945ff72297fab1d25b94

12 years agoam 3e458306: (-s ours) Set the WM refresh rate to 60 Hz for tuna devices only DO...
Mathias Agopian [Thu, 10 Nov 2011 00:41:43 +0000 (00:41 +0000)]
am 3e458306: (-s ours) Set the WM refresh rate to 60 Hz for tuna devices only DO NOT MERGE

* commit '3e458306b0caf4e21294acc58286b24bda08a242':
  Set the WM refresh rate to 60 Hz for tuna devices only DO NOT MERGE

12 years agoSystemUI: Disable HW acceleration for status bar
Jamie Gennis [Wed, 9 Nov 2011 20:43:25 +0000 (12:43 -0800)]
SystemUI: Disable HW acceleration for status bar

This change switches the status bar rendering to use CPU rendering to an
RGB_565 window.

Change-Id: I45c03989efc9cc9ea71ff169fafedf048de9d612

12 years agoSet the WM refresh rate to 60 Hz for tuna devices only DO
Mathias Agopian [Sat, 5 Nov 2011 01:46:11 +0000 (18:46 -0700)]
Set the WM refresh rate to 60 Hz for tuna devices only DO
NOT MERGE

This approach is TEMPORARY until we can do this properly.

Change-Id: I81a8f852df501b2faccffdae7cac954855a6c98f

12 years agolock pattern width spec set to max
Peter Ng [Wed, 9 Nov 2011 23:13:51 +0000 (15:13 -0800)]
lock pattern width spec set to max

Change-Id: If5853d3c7ee2d2330c06f5c802f66249ab3f2694

12 years agoDO NOT MERGE Set the initial scroll position for RTL.
George Mount [Mon, 31 Oct 2011 20:49:03 +0000 (13:49 -0700)]
DO NOT MERGE Set the initial scroll position for RTL.

 Bug 5268793
 Webkit knows about the correct initial position for web pages.
 On initial show, scroll to the webkit position.

 Cherry-picked from master CL: I2537b84a

 External WebKit CL: I6a91b97f

Change-Id: I2537b84a30a26a79a8a0f23fe62b9ed757f9c5a4

12 years agoMerge "Fix 5555408: allow emergency button to be disabled on SIM/PUK unlock screen...
Jim Miller [Wed, 9 Nov 2011 23:19:31 +0000 (15:19 -0800)]
Merge "Fix 5555408: allow emergency button to be disabled on SIM/PUK unlock screen" into ics-mr1

12 years agoam 3124bf64: (-s ours) Merge "Import revised translations. DO NOT MERGE" into ics-mr0
Eric Fischer [Wed, 9 Nov 2011 23:18:10 +0000 (23:18 +0000)]
am 3124bf64: (-s ours) Merge "Import revised translations.  DO NOT MERGE" into ics-mr0

* commit '3124bf64404dbb90cc521abf4c7bf8d438346362':
  Import revised translations.  DO NOT MERGE

12 years agoMerge "Import revised translations. DO NOT MERGE" into ics-mr0
Eric Fischer [Wed, 9 Nov 2011 23:15:42 +0000 (15:15 -0800)]
Merge "Import revised translations.  DO NOT MERGE" into ics-mr0

12 years agoRespect user settings for spell checking language if explicitly set
satok [Wed, 2 Nov 2011 10:29:35 +0000 (19:29 +0900)]
Respect user settings for spell checking language if explicitly set

Bug: 5554116
Change-Id: I8c16d732af1fe713d30d97dfe829ff16653c7f34

12 years agoam bd4bdbec: Merge "docs: update samples toc for rs sample" into ics-mr0
Robert Ly [Wed, 9 Nov 2011 21:25:45 +0000 (21:25 +0000)]
am bd4bdbec: Merge "docs: update samples toc for rs sample" into ics-mr0

* commit 'bd4bdbec62776b1222b1f202e44f8f127bfb7bab':
  docs: update samples toc for rs sample

12 years agoMerge "docs: update samples toc for rs sample" into ics-mr0
Robert Ly [Wed, 9 Nov 2011 21:23:34 +0000 (13:23 -0800)]
Merge "docs: update samples toc for rs sample" into ics-mr0

12 years agoMerge "EGL: add deferred saving of the cache" into ics-mr1
Jamie Gennis [Wed, 9 Nov 2011 19:46:45 +0000 (11:46 -0800)]
Merge "EGL: add deferred saving of the cache" into ics-mr1

12 years agoMerge "Throw TransactionTooLargeException when Binder transaction fails. Bug: 5578022...
Jeff Brown [Wed, 9 Nov 2011 19:20:24 +0000 (11:20 -0800)]
Merge "Throw TransactionTooLargeException when Binder transaction fails. Bug: 5578022" into ics-mr1

12 years agoMerge "Making quicksettings opaque again" into ics-mr1
Peter Ng [Wed, 9 Nov 2011 18:57:23 +0000 (10:57 -0800)]
Merge "Making quicksettings opaque again" into ics-mr1

12 years agoThere's no point in trying to continue to decode after an error was signalled.
Andreas Huber [Wed, 9 Nov 2011 18:26:06 +0000 (10:26 -0800)]
There's no point in trying to continue to decode after an error was signalled.

Change-Id: I2a2410cac9444eadd85be5d104799703171f1a24
related-to-bug: 5588658

12 years agoDon't believe the PV decoder's lies...
Andreas Huber [Wed, 9 Nov 2011 18:03:07 +0000 (10:03 -0800)]
Don't believe the PV decoder's lies...

Change-Id: I97391235255afb8a4890a4ff52d4e8e9ca954f27

12 years agoMerge "Fix determining find on page overlap" into ics-mr1
John Reck [Wed, 9 Nov 2011 17:28:11 +0000 (09:28 -0800)]
Merge "Fix determining find on page overlap" into ics-mr1

12 years agoReconcile with ics-mr0-release
The Android Open Source Project [Wed, 9 Nov 2011 17:00:40 +0000 (09:00 -0800)]
Reconcile with ics-mr0-release

Change-Id: I20113f16c260f8f796a0d370ea105ee17bdaea63

12 years agoMerge "Bug 5585323 New system permission for media decode" into ics-mr1
Jean-Michel Trivi [Wed, 9 Nov 2011 16:57:43 +0000 (08:57 -0800)]
Merge "Bug 5585323 New system permission for media decode" into ics-mr1

12 years agoam 59882fb8: Merge "Add "potential" variants for PhoneNumberUtils.isEmergencyNumber...
David Brown [Wed, 9 Nov 2011 16:41:20 +0000 (16:41 +0000)]
am 59882fb8: Merge "Add "potential" variants for PhoneNumberUtils.isEmergencyNumber()" into ics-mr0

* commit '59882fb8e0ba7c47b780d62c9a9c46b63d779677':
  Add "potential" variants for PhoneNumberUtils.isEmergencyNumber()

12 years agoam 19998120: Merge "Bug 5478024 drop after decode if can\'t drop before" into ics-mr0
Glenn Kasten [Wed, 9 Nov 2011 16:41:19 +0000 (16:41 +0000)]
am 19998120: Merge "Bug 5478024 drop after decode if can\'t drop before" into ics-mr0

* commit '19998120f53caceb620f138c6eea182f1e693660':
  Bug 5478024 drop after decode if can't drop before

12 years agoam fee5f29b: Merge "Fix exception when sending multi-page SMS with Turkish characters...
Jake Hamby [Wed, 9 Nov 2011 16:40:59 +0000 (16:40 +0000)]
am fee5f29b: Merge "Fix exception when sending multi-page SMS with Turkish characters." into ics-mr0

* commit 'fee5f29b22f99bd2891fb2af54669f20832fb851':
  Fix exception when sending multi-page SMS with Turkish characters.

12 years agoMerge "Fix regression for SoundPool playback" into ics-mr1
Eric Laurent [Wed, 9 Nov 2011 16:27:18 +0000 (08:27 -0800)]
Merge "Fix regression for SoundPool playback" into ics-mr1

12 years agoUse platform assets for brightness scrubber.
Daniel Sandler [Wed, 9 Nov 2011 15:34:24 +0000 (10:34 -0500)]
Use platform assets for brightness scrubber.

Bug: 5544665
Change-Id: I063f930b15668c06a30b857e477f3227d1fe526f

12 years agoam 04217efb: Merge "Fix 5514230: preventing null window token from occurring" into...
Brian Colonna [Wed, 9 Nov 2011 15:35:12 +0000 (15:35 +0000)]
am 04217efb: Merge "Fix 5514230: preventing null window token from occurring" into ics-mr0

* commit '04217efb8eaebdbd846671a2f743fa3e960b5dde':
  Fix 5514230: preventing null window token from occurring