Commit Graph

17050 Commits

Author SHA1 Message Date
ddc63ad04b Remove useless start of AudioTrack for TTS and improper volume setting.
The AudioTrack that plays the synthesized audio data should only be
started when the first synthesis request is sent, not after the
initialization of the engine.
The track volume should be initialized to it nominal level. Volumes
above 1 do not provide amplification, so setting the volume to 2 is
not necessary.
2010-01-08 15:03:50 -08:00
ad5a748ea7 Merge "Settings: Add settings for MountService prefs and bump DB version to 46" 2010-01-08 15:03:43 -08:00
923432d5ca Merge "explicitly initialize static final boolean to fix build" 2010-01-08 14:36:52 -08:00
b2924736d7 explicitly initialize static final boolean to fix build 2010-01-08 17:34:58 -05:00
e7bac8fad0 Merge "Reorganize some of the stagefright implementation related to metadata." 2010-01-08 14:09:01 -08:00
1df26b1ed2 Merge "optional flag to enable tracker debugging" 2010-01-08 13:34:54 -08:00
fdc5424b1c optional flag to enable tracker debugging 2010-01-08 16:13:28 -05:00
046dd0111c Merge "ContentResolver.query() includes performance considerations" 2010-01-08 13:04:56 -08:00
1f6301e1ff MountService: Add new Settings for UMS prompting and notification behavior
Signed-off-by: San Mehat <san@google.com>
2010-01-08 12:56:33 -08:00
87734d3bc1 Settings: Add settings for MountService prefs and bump DB version to 46
Adds 4 new Settings:
    Secure.MOUNT_PLAY_NOTIFICATION_SND - Play notification sound on events
    Secure.MOUNT_UMS_AUTOSTART         - Auto-start UMS when host detected
    Secure.MOUNT_UMS_PROMPT            - Show notification when host detected
    Secure.MOUNT_UMS_NOTIFY_ENABLED    - Show notification while UMS enabled

These settings are also added to the Settings backup list

Signed-off-by: San Mehat <san@google.com>
2010-01-08 12:55:22 -08:00
0ba1cb06c6 ContentResolver.query() includes performance considerations
Mention the desirability of using "?"-substitution in the where clause,
and reemphasize the importance of using an explicit projection.

Change-Id: Iaa489d50db409f34e78bcd55253e5a4e53445cf2
2010-01-08 12:53:50 -08:00
f5d95cbc1a less log spew 2010-01-08 15:46:24 -05:00
51d3e79898 Merge "MountService: Fix asec list bug" 2010-01-08 12:38:24 -08:00
aa3b5961c0 javadoc change: fix the selector sample XML in the class
description (was broken due to improper ordering)
2010-01-08 12:35:11 -08:00
cffea95e1e am 3fb4ee4e: Merge "Immediately close the shade when the status bar is disabled. (DO NOT MERGE)" into eclair
Merge commit '3fb4ee4e03351078ceadf3d8dd05789ae152e8dd' into eclair-plus-aosp

* commit '3fb4ee4e03351078ceadf3d8dd05789ae152e8dd':
  Immediately close the shade when the status bar is disabled. (DO NOT MERGE)
2010-01-08 12:33:17 -08:00
6c133a7895 MountService: Fix asec list bug
Signed-off-by: San Mehat <san@google.com>
2010-01-08 12:32:54 -08:00
3fb4ee4e03 Merge "Immediately close the shade when the status bar is disabled. (DO NOT MERGE)" into eclair 2010-01-08 12:31:03 -08:00
d31d7397ba am 663ec308: Fix issue 2361949: A2DP suspend parameters set wrongly.
Merge commit '663ec308801a34de82db9ab993f0e906da690f89' into eclair-plus-aosp

* commit '663ec308801a34de82db9ab993f0e906da690f89':
  Fix issue 2361949: A2DP suspend parameters set wrongly.
2010-01-08 12:17:08 -08:00
7aac5547da Synchronize all WifiNative calls
Some of the native calls were left unsynchronized in the framework. Pre-empted IOCTL call
interrupted by another call from the framework cannot be handled in the driver.

Bug: 2310455
2010-01-08 12:04:30 -08:00
e4a838051d Reorganize some of the stagefright implementation related to metadata. 2010-01-08 11:54:36 -08:00
660cc3461a Merge "b/2293263 Finished removing busyBits references." 2010-01-08 10:45:35 -08:00
431f5fd9e8 Unhide WebView#emulateShiftHeld() so that gmail can do select-to-copy 2010-01-08 10:17:02 -08:00
dd1b39be1e add eventlog message whenever sqlite reports db corruption error 2010-01-08 10:11:24 -08:00
698893fc90 Merge "Update with latest translations." 2010-01-08 10:00:58 -08:00
b816377fed Merge "Fix a bug where the usage for an origin shows up as 0 in Website Settings when the origin uses app cache but not database." 2010-01-08 09:49:31 -08:00
29eadcf376 Merge "Deprecate onTooManyRedirects." 2010-01-08 09:23:44 -08:00
02a018f0b5 Merge "when finalizing SQLiteCursor, close it but don't throw exceptions." 2010-01-08 09:21:31 -08:00
663ec30880 Fix issue 2361949: A2DP suspend parameters set wrongly.
Move reset of A2DP suspend state from handleSinkStateChange() in BluetoothA2dpService to
BluetoothA2dp.ACTION_SINK_STATE_CHANGED intent receiver in AudioService.
Previous implementation could cause a false reset of suspend state if a new sink attempted to
connect while A2DP was suspended.
New implementation only resets A2DP suspend state when a new sink is actually connected.
2010-01-08 08:48:18 -08:00
9840970413 Fix a bug where the usage for an origin shows up as 0 in Website Settings when the origin
uses app cache but not database.
2010-01-08 16:41:23 +00:00
c2a5d96b5d Merge "remove Settings.Gservices" 2010-01-08 08:41:17 -08:00
595ae28dab Merge "Environment: Catch *all* exceptions from MountService" 2010-01-08 07:19:56 -08:00
6a5b0ecae5 Deprecate onTooManyRedirects.
The method was added a long time ago but has never been called. Rather than
spend time implementing and testing this feature, deprecate the function.

Bug: 2257857
2010-01-08 10:16:33 -05:00
0d05539533 am 4e9a9d8e: am c89b13b9: Use Calendar.add() instead of Calendar.roll()
Merge commit '4e9a9d8ea8a31578b936b17f66177f4c1b18cddb'

* commit '4e9a9d8ea8a31578b936b17f66177f4c1b18cddb':
  Use Calendar.add() instead of Calendar.roll()
2010-01-08 06:48:21 -08:00
b0470f67a1 am 2110bb02: am affa5d2c: remove unused jni interfaces
Merge commit '2110bb024eafe4578bb9acace9f1ad4ae55ff9fd'

* commit '2110bb024eafe4578bb9acace9f1ad4ae55ff9fd':
  remove unused jni interfaces
2010-01-08 06:48:08 -08:00
4e9a9d8ea8 am c89b13b9: Use Calendar.add() instead of Calendar.roll()
Merge commit 'c89b13b962c6634db536e563a42d058702ce045b' into eclair-mr2-plus-aosp

* commit 'c89b13b962c6634db536e563a42d058702ce045b':
  Use Calendar.add() instead of Calendar.roll()
2010-01-08 06:43:36 -08:00
c89b13b962 Use Calendar.add() instead of Calendar.roll()
Calendar.roll() breaks the year at the beginning of the year, so
use add() instead, which changes larger fields.

Also, only use 4 bins, since the last bin's boundary is not relevant.

Lastly, no need to return Calendar in beginningOfDay.

Fixes http://b/issue?id=2361382
2010-01-08 09:18:37 -05:00
994cd7959d DO NOT MERGE A library for encoding and decoding ETC1 textures.
The ETC1 compressed texture format is commonly
supported by OpenGL ES 2.0-capable devices.

This change adds a host-only version of the library. It is used by
the etc1tool.
2010-01-08 16:00:21 +08:00
a6a72814e0 Environment: Catch *all* exceptions from MountService
Signed-off-by: San Mehat <san@google.com>
2010-01-07 22:39:53 -08:00
624d39dd81 Unhide intent extra constants for Camera. 2010-01-08 12:31:16 +08:00
b0ef1bcfa1 Merge "Bumper un-@hide (un-@pending actually) of previously reviewed APIs:" 2010-01-07 19:16:34 -08:00
6e70912bd5 Bumper un-@hide (un-@pending actually) of previously reviewed APIs:
- new Log methods for reportable conditions
- EventLog publication, EventLogTags deprecation
- a new stackTrace field in ProcessErrorStateInfo
2010-01-07 19:10:43 -08:00
7f9ea43fae am f6de904a: am 063d03ed: Converting tabs to spaces in docs/html/resources/resources_toc.cs.
Merge commit 'f6de904a3c62895c691ce82dbf84e2abf0bdd019'

* commit 'f6de904a3c62895c691ce82dbf84e2abf0bdd019':
  Converting tabs to spaces in docs/html/resources/resources_toc.cs.
2010-01-07 19:02:03 -08:00
f6de904a3c am 063d03ed: Converting tabs to spaces in docs/html/resources/resources_toc.cs.
Merge commit '063d03ed0882582840c7db610635aa89c1a01eec' into eclair-plus-aosp

* commit '063d03ed0882582840c7db610635aa89c1a01eec':
  Converting tabs to spaces in docs/html/resources/resources_toc.cs.
2010-01-07 18:58:35 -08:00
aed8f8eb14 remove Settings.Gservices
Move the last few keys to secure settings, and delete the Gservices
table.

Change-Id: Ie3ba45aa8c1f220824aa027c547cb82884452eb5
2010-01-07 18:24:48 -08:00
60545527b6 Merge "remove GoogleWebContentHelper class" 2010-01-07 18:14:05 -08:00
b85513ba9c b/2293263 Finished removing busyBits references.
Removed the rest of the busyBit functionality. Along with other changes all busyBits
uses should now be removed.
2010-01-07 16:52:29 -08:00
917cd4fcda Fix npot but where mipmap level sizes were rounding in the wrong direction. Should always be floor. 2010-01-07 16:26:42 -08:00
6286953ece Change user attribs to look for empty slot rather than using them in order. Prevents conflict with numbered legacy slots. 2010-01-07 16:26:42 -08:00
d22c49a2d5 Update with latest translations. 2010-01-07 15:55:17 -08:00
c34705bc35 remove GoogleWebContentHelper class
This shouldn't have been in frameworks/base; migrated to vendor/google.

Change-Id: Ia7a4748f9acf9d0a1d059496b75d0a8b827bc294
2010-01-07 15:49:40 -08:00