3865 Commits

Author SHA1 Message Date
Nick Pelly
38615fc692 am bf765b6c: am 41140098: Merge change 24274 into eclair
Merge commit 'bf765b6c70c0cc5e494c1361747d3b93e98d962d'

* commit 'bf765b6c70c0cc5e494c1361747d3b93e98d962d':
  API_CHANGE
2009-09-09 16:28:58 -07:00
Nick Pelly
3f51fee5f7 am 16a54b28: am aadc9220: Merge change 24202 into eclair
Merge commit '16a54b2861209a13194b02f7882a0ec247b69060'

* commit '16a54b2861209a13194b02f7882a0ec247b69060':
  API_CHANGE
2009-09-09 16:28:52 -07:00
Jaikumar Ganesh
80626de799 am b962208d: am 100f0861: Merge change 24376 into eclair
Merge commit 'b962208d8ec529b8cc07c3bc44732603010bd691'

* commit 'b962208d8ec529b8cc07c3bc44732603010bd691':
  Query for all properties if a property change is received and cache is empty.
2009-09-09 16:27:47 -07:00
Andrei Popescu
d2a43c36e4 am 0faff7b0: am cf7b5521: Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
Merge commit '0faff7b0cc06ffb933763a9494056a8ec132183a'

* commit '0faff7b0cc06ffb933763a9494056a8ec132183a':
  Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
2009-09-09 16:27:16 -07:00
Grace Kloba
a9af25befb am b84214a3: am ccda4c49: Merge change 24288 into eclair
Merge commit 'b84214a329963be9e156f771c3c8d142280882d7'

* commit 'b84214a329963be9e156f771c3c8d142280882d7':
  Do not cache POST response as Cache is indexed with url.
2009-09-09 16:26:39 -07:00
Eric Laurent
7fae310537 am d3a31996: am db603b0b: Merge change 24114 into eclair
Merge commit 'd3a31996e6ef915bc25ff67f1f35274447a14862'

* commit 'd3a31996e6ef915bc25ff67f1f35274447a14862':
  Fix issue 1992233: DTMF tones on Sholes is really long.
2009-09-09 13:41:53 -07:00
Omari Stephens
99af2813e0 am c5e15ad7: am 948ef29e: Merge change 24316 into eclair
Merge commit 'c5e15ad767b4ff92d4eb85655b6e5fd517c0ae93'

* commit 'c5e15ad767b4ff92d4eb85655b6e5fd517c0ae93':
  Fix typo: IMMEDITATE -> IMMEDIATE
2009-09-09 13:41:17 -07:00
Nick Pelly
bf765b6c70 am 41140098: Merge change 24274 into eclair
Merge commit '411400980720895c4195c71e181831bc771a5a7b' into eclair-plus-aosp

* commit '411400980720895c4195c71e181831bc771a5a7b':
  API_CHANGE
2009-09-09 11:39:22 -07:00
Nick Pelly
16a54b2861 am aadc9220: Merge change 24202 into eclair
Merge commit 'aadc9220bd04ba8dd016fe634fabf6c91a1ce672' into eclair-plus-aosp

* commit 'aadc9220bd04ba8dd016fe634fabf6c91a1ce672':
  API_CHANGE
2009-09-09 11:39:16 -07:00
Fred Quintana
be5bc78a98 am f43d282d: am b0dccf73: Merge change 24012 into eclair
Merge commit 'f43d282dc7ed88e6d018fa3729da568af8b58158'

* commit 'f43d282dc7ed88e6d018fa3729da568af8b58158':
  add a transaction monitor
2009-09-09 10:58:43 -07:00
Jaikumar Ganesh
b962208d8e am 100f0861: Merge change 24376 into eclair
Merge commit '100f08613392c225b8dff3f1e1d586f981884e29' into eclair-plus-aosp

* commit '100f08613392c225b8dff3f1e1d586f981884e29':
  Query for all properties if a property change is received and cache is empty.
2009-09-09 10:55:14 -07:00
Nick Pelly
b24e11baac API_CHANGE
Deprecate BluetoothError.java.

I spent a lot of time experimenting with a class BluetoothError to enumerate
the many error codes returned by the Bluetooth API. But at the end of the day
they were never used. The vast majority of method calls only really need a
true/false error value, and often not even that.

Methods which do need more detailed error enumeration (for example, bonding
failures) can have there own enumerated error codes. But there is no need
for a common set of error codes.

Also change the IPC failed warnings in BluetoothA2dp to Log.e. These indicate
a very serious error.

Introduce BluetoothAdapter.ERROR and BluetoothDevice.ERROR as helper sentinel
values.
2009-09-09 10:52:18 -07:00
Nick Pelly
de893f5503 API_CHANGE
Another round of Bluetooth API clean up, javadoc'ing and unhide'ing.

-- Symbols for getting/setting bluetooth state --
BluetoothAdapter.ACTION_STATE_CHANGED
BluetoothAdapter.EXTRA_STATE
BluetoothAdapter.EXTRA_PREVIOUS_STATE
BluetoothAdapter.STATE_OFF
BluetoothAdapter.STATE_TURNING_ON
BluetoothAdapter.STATE_ON
BluetoothAdapter.STATE_TURNING_OFF
BluetoothAdapter.isEnabled()
BluetoothAdapter.getState()
BluetoothAdapter.enable()
BluetoothAdapter.disable()

-- Symbols for getting/setting scan mode --
BluetoothAdapter.ACTION_SCAN_MODE_CHANGED
BluetoothAdapter.EXTRA_SCAN_MODE
BluetoothAdapter.EXTRA_PREVIOUS_SCAN_MODE
BluetoothAdapter.SCAN_MODE_NONE
BluetoothAdapter.SCAN_MODE_CONNECTABLE
BluetoothAdapter.SCAN_MODE_DISCOVERABLE
BluetoothAdapter.getScanMode()
BluetoothAdapter.setScanMode()

-- Symbols for getting address/names --
BluetoothAdapter.getAddress()
BluetoothAdapter.getName()
BluetoothAdapter.setName()
2009-09-09 10:52:02 -07:00
Android (Google) Code Review
100f086133 Merge change 24376 into eclair
* changes:
  Query for all properties if a property change is received and cache is empty.
2009-09-09 13:47:27 -04:00
Andrei Popescu
0faff7b0cc am cf7b5521: Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
Merge commit 'cf7b5521fc4a8f87033e3bf3626e8a2cf81fccfd' into eclair-plus-aosp

* commit 'cf7b5521fc4a8f87033e3bf3626e8a2cf81fccfd':
  Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash.
2009-09-09 10:16:18 -07:00
Andrei Popescu
cf7b5521fc Remove the call to nativeAddJavascriptInterface() from BrowserFrame::addJavascriptInterface() as it causes an intermitent crash. 2009-09-09 17:44:51 +01:00
Grace Kloba
b84214a329 am ccda4c49: Merge change 24288 into eclair
Merge commit 'ccda4c4960ad6694e506e075f8f0b479ea2bafb6' into eclair-plus-aosp

* commit 'ccda4c4960ad6694e506e075f8f0b479ea2bafb6':
  Do not cache POST response as Cache is indexed with url.
2009-09-09 09:00:07 -07:00
Android (Google) Code Review
ccda4c4960 Merge change 24288 into eclair
* changes:
  Do not cache POST response as Cache is indexed with url.
2009-09-09 11:55:03 -04:00
Eric Laurent
d3a31996e6 am db603b0b: Merge change 24114 into eclair
Merge commit 'db603b0b2c7c06ea78b8aa0bdc7ea8f08b335c3d' into eclair-plus-aosp

* commit 'db603b0b2c7c06ea78b8aa0bdc7ea8f08b335c3d':
  Fix issue 1992233: DTMF tones on Sholes is really long.
2009-09-08 23:07:51 -07:00
Eric Laurent
96c08a69ea 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.
2009-09-08 22:56:07 -07:00
Jaikumar Ganesh
9519ce75f1 Query for all properties if a property change is received and cache is empty. 2009-09-08 21:51:07 -07:00
Omari Stephens
c5e15ad767 am 948ef29e: Merge change 24316 into eclair
Merge commit '948ef29ebacde30bc2f1283b5e6d86f2413698c4' into eclair-plus-aosp

* commit '948ef29ebacde30bc2f1283b5e6d86f2413698c4':
  Fix typo: IMMEDITATE -> IMMEDIATE
2009-09-08 21:03:48 -07:00
Grace Kloba
273fecc22a 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
2009-09-08 19:24:44 -07:00
Omari Stephens
bc9aa775ae Fix typo: IMMEDITATE -> IMMEDIATE 2009-09-08 19:10:53 -07:00
Fred Quintana
f43d282dc7 am b0dccf73: Merge change 24012 into eclair
Merge commit 'b0dccf73ddb5a695fe24f1435411feea5876609f' into eclair-plus-aosp

* commit 'b0dccf73ddb5a695fe24f1435411feea5876609f':
  add a transaction monitor
2009-09-08 17:29:09 -07:00
Android (Google) Code Review
b0dccf73dd Merge change 24012 into eclair
* changes:
  add a transaction monitor
2009-09-08 17:26:25 -07:00
Fred Quintana
c4516a7b62 add a transaction monitor 2009-09-08 17:25:09 -07:00
Eric Fischer
817f3cb41b am 046263ce: Merge change 24220 into eclair
Merge commit '046263ce352912990e492eb5cfd833c21109cf9f' into eclair-plus-aosp

* commit '046263ce352912990e492eb5cfd833c21109cf9f':
  Import revised translations.  DO NOT MERGE
2009-09-08 17:01:11 -07:00
Android (Google) Code Review
046263ce35 Merge change 24220 into eclair
* changes:
  Import revised translations.  DO NOT MERGE
2009-09-08 16:58:33 -07:00
Eric Fischer
5cacfb9df2 Import revised translations. DO NOT MERGE 2009-09-08 16:54:05 -07:00
Amith Yamasani
359c140620 am e8ffb1da: am e989496e: Merge change 24194 into eclair
Merge commit 'e8ffb1da28b397422ec67c93577abe37f0561228'

* commit 'e8ffb1da28b397422ec67c93577abe37f0561228':
  Make the hardkeyboard long press dialog look the same as that of soft keyboard.
2009-09-08 16:03:46 -07:00
Costin Manolache
5e97766a42 am 93c2b332: am b752098e: Sync status was ignoring account - the new UI has specific sync status for each account, so we need to use it.
Merge commit '93c2b332ce0f36d7774e33db1954f8a780b20ba6'

* commit '93c2b332ce0f36d7774e33db1954f8a780b20ba6':
  Sync status was ignoring account - the new UI has specific sync status for each account, so we need to use it.
2009-09-08 16:03:18 -07:00
Nick Pelly
187320fa70 am 328b53b5: am 33b69050: Merge change 24155 into eclair
Merge commit '328b53b58b06b07369b6238dd6ba234194e3b456'

* commit '328b53b58b06b07369b6238dd6ba234194e3b456':
  Add javadoc to explain which permissions are required for Public BT API's.
2009-09-08 16:02:02 -07:00
Dmitri Plotnikov
feaa563a63 am 8544a349: am 7452d292: Merge change 24086 into eclair
Merge commit '8544a349837596ff8889abf3f564c35bb5a1c51a'

* commit '8544a349837596ff8889abf3f564c35bb5a1c51a':
  Fixing asymmetry between phone filter and email filter APIs.
2009-09-08 16:01:55 -07:00
Derek Sollenberger
ac6d106643 am af4ce5bd: am c3a30a00: Merge change 24153 into eclair
Merge commit 'af4ce5bd00be6fd3319c7cdcc3ddf27ac81ac24e'

* commit 'af4ce5bd00be6fd3319c7cdcc3ddf27ac81ac24e':
  adding support for webkit plugins to use the java view system
2009-09-08 16:01:47 -07:00
Cary Clark
af7996479b am e9aab295: am c18e9ed3: Merge change 24161 into eclair
Merge commit 'e9aab295739992c763f070d9fdffcce95d15d2af'

* commit 'e9aab295739992c763f070d9fdffcce95d15d2af':
  don't fling if there's nowhere to go
2009-09-08 16:01:40 -07:00
Cary Clark
4b60422353 am 7ac6cf9d: am f8d4964e: default overview mode to false in webkit
Merge commit '7ac6cf9d9e6928b85ae4c4c35a515ce7111de066'

* commit '7ac6cf9d9e6928b85ae4c4c35a515ce7111de066':
  default overview mode to false in webkit
2009-09-08 16:01:37 -07:00
Derek Sollenberger
8a46f64803 am bfe76e4f: am 377c5c15: Revert "Adding classes to enable plugins to use the java view system."
Merge commit 'bfe76e4f7b08882cf419f93e3511e90f59774ca7'

* commit 'bfe76e4f7b08882cf419f93e3511e90f59774ca7':
  Revert "Adding classes to enable plugins to use the java view system."
2009-09-08 16:01:33 -07:00
Derek Sollenberger
7e670ea545 am 96d97921: am 67dffd93: Merge change 23485 into eclair
Merge commit '96d979212f3e2548f1fcfad8208f81b895d80087'

* commit '96d979212f3e2548f1fcfad8208f81b895d80087':
  Adding classes to enable plugins to use the java view system.
2009-09-08 16:01:30 -07:00
Daisuke Miyakawa
5851d3bf92 am 71881682: am 7390c5af: Merge change 24097 into eclair
Merge commit '718816821564b61301b0ea93423f7d9d47c2d555'

* commit '718816821564b61301b0ea93423f7d9d47c2d555':
  Fix small bugs in VCardComposer.java.
2009-09-08 16:01:26 -07:00
Dianne Hackborn
50e1069cf0 am c66e6851: am 0d23b82b: Fix 0%^&%!! SDK build.
Merge commit 'c66e685115b45667ad67372fbf769c6f2dd52b1f'

* commit 'c66e685115b45667ad67372fbf769c6f2dd52b1f':
  Fix $#%^&%!! SDK build.
2009-09-08 16:01:23 -07:00
Dianne Hackborn
3331da069c am da2e19c6: am eb034652: Implement all of the infrastructure for configuring wallpapers.
Merge commit 'da2e19c6ad5c153d87c8da1a695e5e823d17e29b'

* commit 'da2e19c6ad5c153d87c8da1a695e5e823d17e29b':
  Implement all of the infrastructure for configuring wallpapers.
2009-09-08 16:01:18 -07:00
Dianne Hackborn
e8151fcbdc am 2a5006c1: am c916c044: Merge change 24099 into eclair
Merge commit '2a5006c195c9635a66158bf6b3212351ea5232dc'

* commit '2a5006c195c9635a66158bf6b3212351ea5232dc':
  Fix issue #2095422: Some fades from opaque to transparent don't work
2009-09-08 16:01:08 -07:00
Bjorn Bringert
41c9e2016c am 63aaa98a: am 96f8613d: Add Gservices constants for GlobalSearch settings
Merge commit '63aaa98a76064703950c5a4c24325b5ff0fa6b25'

* commit '63aaa98a76064703950c5a4c24325b5ff0fa6b25':
  Add Gservices constants for GlobalSearch settings
2009-09-08 16:01:01 -07:00
Owen Lin
16ea2b7a69 am 00453ad2: am d4344ba9: Merge change 23415 into eclair
Merge commit '00453ad22a445f1cdef768ed1f062f0fac7c1dc9'

* commit '00453ad22a445f1cdef768ed1f062f0fac7c1dc9':
  Open some methods on PrefereneManager to allow others use the inflater.
2009-09-08 16:00:57 -07:00
Bob Lee
55991c08b8 am 0dbc9317: am 88e62579: Merge change 24060 into eclair
Merge commit '0dbc9317540ce3200cf0587ee0f8f5fb241574b9'

* commit '0dbc9317540ce3200cf0587ee0f8f5fb241574b9':
  Integrated the profiler into the framework. We run it all the time if the persist.sampling_profiler
2009-09-08 16:00:54 -07:00
Amith Yamasani
e8ffb1da28 am e989496e: Merge change 24194 into eclair
Merge commit 'e989496e2bb7a64abe7336db1e728095ebc83a0c' into eclair-plus-aosp

* commit 'e989496e2bb7a64abe7336db1e728095ebc83a0c':
  Make the hardkeyboard long press dialog look the same as that of soft keyboard.
2009-09-08 15:36:28 -07:00
Android (Google) Code Review
e989496e2b Merge change 24194 into eclair
* changes:
  Make the hardkeyboard long press dialog look the same as that of soft keyboard.
2009-09-08 15:33:50 -07:00
Amith Yamasani
38d838d3ae Make the hardkeyboard long press dialog look the same as that of soft keyboard.
New assets for transparent buttons and background.
2009-09-08 14:25:25 -07:00
Costin Manolache
93c2b332ce am b752098e: Sync status was ignoring account - the new UI has specific sync status for each account, so we need to use it.
Merge commit 'b752098e8d12d6e7925d97458078dbb896ca8a05' into eclair-plus-aosp

* commit 'b752098e8d12d6e7925d97458078dbb896ca8a05':
  Sync status was ignoring account - the new UI has specific sync status for each account, so we need to use it.
2009-09-08 14:10:35 -07:00