OSDN Git Service

android-x86/frameworks-base.git
13 years agoMerge "Map multiple apnType to one DataConnection fixes." into honeycomb-LTE
Wink Saville [Mon, 23 May 2011 20:39:03 +0000 (13:39 -0700)]
Merge "Map multiple apnType to one DataConnection fixes." into honeycomb-LTE

13 years agoMerge "Data Connection: Use Alarm for all delayed data retries." into honeycomb-LTE
Wink Saville [Mon, 23 May 2011 20:38:36 +0000 (13:38 -0700)]
Merge "Data Connection: Use Alarm for all delayed data retries." into honeycomb-LTE

13 years agoam 358d2cd9: Simplify browser pause/resume logic to avoid stuck timer.
Shimeng (Simon) Wang [Mon, 23 May 2011 19:14:04 +0000 (12:14 -0700)]
am 358d2cd9: Simplify browser pause/resume logic to avoid stuck timer.

* commit '358d2cd96403383cfb91bb68598a4cb2fe2e170e':
  Simplify browser pause/resume logic to avoid stuck timer.

13 years agoMap multiple apnType to one DataConnection fixes.
Ramesh Sudini [Tue, 17 May 2011 14:05:40 +0000 (09:05 -0500)]
Map multiple apnType to one DataConnection fixes.

With current design the code maps to the same DC, but no indications go out.
With this, making it more async in nature that the request goes all the way
to DC and all the data indications would be triggered by parallel paths through DCT.

Change-Id: I4c6e64912dafe19154d910bbd0441b10ada36cff

13 years agoData Connection: Use Alarm for all delayed data retries.
Ramesh Sudini [Sun, 22 May 2011 14:24:28 +0000 (09:24 -0500)]
Data Connection: Use Alarm for all delayed data retries.

Change-Id: I5045c3a10808b75f1ca3174bd1c16f332d5f7fa8

13 years agoSimplify browser pause/resume logic to avoid stuck timer.
Shimeng (Simon) Wang [Mon, 23 May 2011 16:33:31 +0000 (09:33 -0700)]
Simplify browser pause/resume logic to avoid stuck timer.

The current browser pause/resume logic uses an integer count to track
the pause/resume behavior, which is mostly working fine in phone.  The interger
count is usually 0 when browser is paused, and its value is usually 1
when the browser is resumed and will trigger any delayed timer.

But in tablet, where tabs can be easily created/switched/deleted, this
logic will not work well and sometimes cause resources timers get stuck.
For example, in case multiple tabs are created, and you reload one of the
tabs, when it's almost finished, switch to another tab, and hit home or power
button, at this point of time, the browser will be suspended at
Controller.java::onPause, hence the integer count will be 0; but since
the other tab is also finished after the pause, the current logic at
Controller.java::onPageFinished will call pause timer again, which will make
the integer count to be -1.  Before the time the browser is resumed, it's very
possible some tabs will have some resources, such as images/flashs,
scheduled to be loaded, these will be in delayed timer in
ResourceLoadScheduler.cpp's m_requestTimer.
Now when the browser is resumed, the integer count will be 0, which will not
trigger delayed timer.  Then all the new timers will be stuck as well since
old timers are not executed yet.

The fix is to simplify the pause/resume logic by just using a boolean variable
instead of error-prone integer counting.

issue: 4177932
Change-Id: Id10af9298c7be1f82222d0b94c34c5dc68403630

13 years agoam a5293d1c: Add some logging to track down where ANR happens during MediaPlayer...
James Dong [Mon, 23 May 2011 16:59:59 +0000 (09:59 -0700)]
am a5293d1c: Add some logging to track down where ANR happens during MediaPlayer._release().

* commit 'a5293d1ca4459293f4993ea39c09ea703a022844':
  Add some logging to track down where ANR happens during MediaPlayer._release().

13 years agoAdd some logging to track down where ANR happens during MediaPlayer._release().
James Dong [Thu, 19 May 2011 22:56:50 +0000 (15:56 -0700)]
Add some logging to track down where ANR happens during MediaPlayer._release().

o add a log message in AwesomePlayer::reset before acquiring the lock

Change-Id: I9f228f615f99c03c394e9d0dd78c855c0b9fcfbb
related-to-bug: 4409547

13 years agoData reconnection issue after airplane mode
Kazuhiro Ondo [Sat, 21 May 2011 07:15:20 +0000 (02:15 -0500)]
Data reconnection issue after airplane mode

ApnContext and DC were not disassociated when force
"cleanUpConnection" was called. Causing the setup
request was not happening if applyNewStatus() was
the trigger.

Change-Id: I6d73a53edb72bb9ab4ebb92fffd06e6fe1f0c4aa

13 years agoGSM DCT: Update poll stats to support multi-links
Kazuhiro Ondo [Sat, 21 May 2011 00:32:24 +0000 (19:32 -0500)]
GSM DCT: Update poll stats to support multi-links

Change-Id: I654e38e71f9576ed2c4da59af563be04bc87045c

13 years agoTear down connection with unwanted linkproperty change
Wink Saville [Sat, 21 May 2011 17:05:26 +0000 (10:05 -0700)]
Tear down connection with unwanted linkproperty change

Make sure to disconnect the link when RIL reported link property change
which could cause connectivity issue. (i.e. IP address)

Change-Id: I6601ef53e4561bdc7d2760d00e134b8431512cb2

13 years agoFix build.
Wink Saville [Sat, 21 May 2011 06:31:29 +0000 (23:31 -0700)]
Fix build.

A merge accidentally included a line that was deleted.

Change-Id: I991488ace290e5eb8eef3ca73f49c07d391028f5

13 years agoMerge "Notify RIL that PDP reset is triggered due to data stall" into honeycomb-LTE
Wink Saville [Sat, 21 May 2011 00:23:45 +0000 (17:23 -0700)]
Merge "Notify RIL that PDP reset is triggered due to data stall" into honeycomb-LTE

13 years agoMerge "Add UI to handle SIM swap." into honeycomb-LTE
John Wang [Sat, 21 May 2011 00:18:56 +0000 (17:18 -0700)]
Merge "Add UI to handle SIM swap." into honeycomb-LTE

13 years agoAdd UI to handle SIM swap.
John Wang [Tue, 10 May 2011 19:34:31 +0000 (12:34 -0700)]
Add UI to handle SIM swap.

bug:4364964

Change-Id: Iadf466401a24dfbd638353d689e6ae89506afc97

13 years agoNotify RIL that PDP reset is triggered due to data stall
Kazuhiro Ondo [Fri, 20 May 2011 01:42:59 +0000 (20:42 -0500)]
Notify RIL that PDP reset is triggered due to data stall

Additional deactivate cause so RIL could take intelligent action
on data stall occurrence if necessary.

Change-Id: Iae4accda879efb5679085c518117617fb16631c3

13 years agoam 2c7906eb: Merge "Fix 4462474: Use new sw600dp resource target for LockScreen ...
Jim Miller [Fri, 20 May 2011 23:51:49 +0000 (16:51 -0700)]
am 2c7906eb: Merge "Fix 4462474: Use new sw600dp resource target for LockScreen & SystemUI" into honeycomb-mr2

* commit '2c7906eb392c6349e6f75fd2681310b934d6e262':
  Fix 4462474: Use new sw600dp resource target for LockScreen & SystemUI

13 years agoMerge "Fix 4462474: Use new sw600dp resource target for LockScreen & SystemUI" into...
Jim Miller [Fri, 20 May 2011 23:49:08 +0000 (16:49 -0700)]
Merge "Fix 4462474: Use new sw600dp resource target for LockScreen & SystemUI" into honeycomb-mr2

13 years agoMerge "Fix broken data retry" into honeycomb-LTE
Wink Saville [Fri, 20 May 2011 23:47:54 +0000 (16:47 -0700)]
Merge "Fix broken data retry" into honeycomb-LTE

13 years agoFix 4462474: Use new sw600dp resource target for LockScreen & SystemUI
Jim Miller [Fri, 20 May 2011 22:46:24 +0000 (15:46 -0700)]
Fix 4462474: Use new sw600dp resource target for LockScreen & SystemUI

Change-Id: I79d4fe54c00ecb4c4a1ad614b94bb284b9ece5cc

13 years agoam bdc26dc3: Merge "Change measurement of effective screen height for PopupWindow...
Adam Powell [Fri, 20 May 2011 23:02:21 +0000 (16:02 -0700)]
am bdc26dc3: Merge "Change measurement of effective screen height for PopupWindow now that DisplayMetrics reports it without system decorations." into honeycomb-mr2

* commit 'bdc26dc34a5d848883d5acdee62f5b4403e8fe04':
  Change measurement of effective screen height for PopupWindow now that DisplayMetrics reports it without system decorations.

13 years agoMerge "Change measurement of effective screen height for PopupWindow now that Display...
Adam Powell [Fri, 20 May 2011 22:59:19 +0000 (15:59 -0700)]
Merge "Change measurement of effective screen height for PopupWindow now that DisplayMetrics reports it without system decorations." into honeycomb-mr2

13 years agoChange measurement of effective screen height for PopupWindow now that
Adam Powell [Fri, 20 May 2011 22:56:25 +0000 (15:56 -0700)]
Change measurement of effective screen height for PopupWindow now that
DisplayMetrics reports it without system decorations.

Change-Id: I57f926de1cc7170b9996d7c71aa01542baf0c673

13 years agoFix broken data retry
Kazuhiro Ondo [Wed, 18 May 2011 21:50:15 +0000 (16:50 -0500)]
Fix broken data retry

Change I2b737efa6092ad1254c8dc25840ec429f5c6e882 brought side
effect that retry count is reset at every setup.

Change-Id: I6f20d2e82110b2873ff5acbb60a747fd11c09c60

13 years agoMerge "Change getLteOnCdmaModeStatic to dynamically determine its result." into honey...
Wink Saville [Fri, 20 May 2011 22:27:03 +0000 (15:27 -0700)]
Merge "Change getLteOnCdmaModeStatic to dynamically determine its result." into honeycomb-LTE

13 years agoam 1b144e62: Merge "Add ParcelFileDescriptor.fromFd() and .adoptFd()." into honeycomb-mr2
Dianne Hackborn [Fri, 20 May 2011 21:32:35 +0000 (14:32 -0700)]
am 1b144e62: Merge "Add ParcelFileDescriptor.fromFd() and .adoptFd()." into honeycomb-mr2

* commit '1b144e625fb0d34cd680c44cbcfb2deb8a76d4c6':
  Add ParcelFileDescriptor.fromFd() and .adoptFd().

13 years agoMerge "Add ParcelFileDescriptor.fromFd() and .adoptFd()." into honeycomb-mr2
Dianne Hackborn [Fri, 20 May 2011 21:28:43 +0000 (14:28 -0700)]
Merge "Add ParcelFileDescriptor.fromFd() and .adoptFd()." into honeycomb-mr2

13 years agoMerge "Simplfy getActive* calls in ConnectivityService" into honeycomb-LTE
Robert Greenwalt [Fri, 20 May 2011 21:25:29 +0000 (14:25 -0700)]
Merge "Simplfy getActive* calls in ConnectivityService" into honeycomb-LTE

13 years agoam 14e45f9b: Merge "Fix 4462497: Move layouts from xlarge to large to enable 7" table...
Jim Miller [Fri, 20 May 2011 20:16:47 +0000 (13:16 -0700)]
am 14e45f9b: Merge "Fix 4462497: Move layouts from xlarge to large to enable 7" tablets" into honeycomb-mr2

* commit '14e45f9b19a846af074d73b3792e35de0448ac21':
  Fix 4462497: Move layouts from xlarge to large to enable 7" tablets

13 years agoam 5e731140: Merge "Fix 4462474: Fixes crash on 7" tablet due to using wrong resource...
Jim Miller [Fri, 20 May 2011 20:16:43 +0000 (13:16 -0700)]
am 5e731140: Merge "Fix 4462474: Fixes crash on 7" tablet due to using wrong resource" into honeycomb-mr2

* commit '5e731140f38e06c42885fa300efc30da00711c76':
  Fix 4462474: Fixes crash on 7" tablet due to using wrong resource

13 years agoMerge "Fix 4462497: Move layouts from xlarge to large to enable 7" tablets" into...
Jim Miller [Fri, 20 May 2011 20:13:19 +0000 (13:13 -0700)]
Merge "Fix 4462497: Move layouts from xlarge to large to enable 7" tablets" into honeycomb-mr2

13 years agoMerge "Fix 4462474: Fixes crash on 7" tablet due to using wrong resource" into honeyc...
Jim Miller [Fri, 20 May 2011 20:12:57 +0000 (13:12 -0700)]
Merge "Fix 4462474: Fixes crash on 7" tablet due to using wrong resource" into honeycomb-mr2

13 years agoam 73a31ec9: Merge "New opaque cab assets; search dialog tweaks." into honeycomb-mr2
Adam Powell [Fri, 20 May 2011 20:04:11 +0000 (13:04 -0700)]
am 73a31ec9: Merge "New opaque cab assets; search dialog tweaks." into honeycomb-mr2

* commit '73a31ec91c3e472503e9fbbfe82b8c3bbc5140ed':
  New opaque cab assets; search dialog tweaks.

13 years agoMerge "New opaque cab assets; search dialog tweaks." into honeycomb-mr2
Adam Powell [Fri, 20 May 2011 19:59:43 +0000 (12:59 -0700)]
Merge "New opaque cab assets; search dialog tweaks." into honeycomb-mr2

13 years agoAdd ParcelFileDescriptor.fromFd() and .adoptFd().
Dianne Hackborn [Fri, 20 May 2011 17:37:34 +0000 (10:37 -0700)]
Add ParcelFileDescriptor.fromFd() and .adoptFd().

Change-Id: I2fe0429188dc80abaa0c8977f2e43a010e0f4da2

13 years agoChange getLteOnCdmaModeStatic to dynamically determine its result.
Wink Saville [Fri, 20 May 2011 19:12:00 +0000 (12:12 -0700)]
Change getLteOnCdmaModeStatic to dynamically determine its result.

bug: 4202572
Change-Id: I956b61840e2043229df29054dd2a6daccd7a845f

13 years agoSimplfy getActive* calls in ConnectivityService
Robert Greenwalt [Fri, 20 May 2011 19:23:41 +0000 (12:23 -0700)]
Simplfy getActive* calls in ConnectivityService

One had been simplified on GB, but somehow it didn't make it here.
bug: 4463770

Change-Id: Ica51e836b1a7a489526a223168910b8e06c99c2b

13 years agoam a6f1104b: Use pread() to get the decrypted data for container based DRM file....
Gloria Wang [Fri, 20 May 2011 17:57:51 +0000 (10:57 -0700)]
am a6f1104b: Use pread() to get the decrypted data for container based DRM file. For bug 4392094.

* commit 'a6f1104b9d829c636b60b9387e379f9667b5df09':
  Use pread() to get the decrypted data for container based DRM file. For bug 4392094.

13 years agoUse pread() to get the decrypted data for container based DRM file.
Gloria Wang [Fri, 20 May 2011 17:15:21 +0000 (10:15 -0700)]
Use pread() to get the decrypted data for container based DRM file.
For bug 4392094.

Change-Id: Icc64a26c5b413313cc35dcd02d60484dc8245dfb

13 years agoam b4788fdb: Do not merge. Backport two fixes for InputMethethodFramework
satok [Fri, 20 May 2011 13:41:03 +0000 (06:41 -0700)]
am b4788fdb: Do not merge. Backport two fixes for InputMethethodFramework

* commit 'b4788fdbfdda97bd9cfd0e483276934114d9c438':
  Do not merge. Backport two fixes for InputMethethodFramework

13 years agoDo not merge. Backport two fixes for InputMethethodFramework
satok [Fri, 20 May 2011 09:19:53 +0000 (18:19 +0900)]
Do not merge. Backport two fixes for InputMethethodFramework

Bug: 3420384

backport cl1: Iaf293cf6c6fb35a994f344b0afc30e9f523032f4
backport cl2: I29d2555aeb7d0e51205d9f1fe0da708df0890942

Change-Id: Ia71ba27957fa818dc4ef8ff05b5fdb120b9650e0

13 years agoam 69cb8757: Add new "-swNNNdp" resource qualifier.
Dianne Hackborn [Fri, 20 May 2011 02:30:32 +0000 (19:30 -0700)]
am 69cb8757: Add new "-swNNNdp" resource qualifier.

* commit '69cb87576ba163b61bb0e6477a3b7c57a9b11d40':
  Add new "-swNNNdp" resource qualifier.

13 years agoNew opaque cab assets; search dialog tweaks.
Adam Powell [Fri, 20 May 2011 01:46:47 +0000 (18:46 -0700)]
New opaque cab assets; search dialog tweaks.

* New opaque assets (now actually opaque!)

* SearchDialog determines theme to use from parent context

* SearchDialog now disallows action modes

Change-Id: If05fe64d7cc4460678d78412275ee988ddb47e9e

13 years agoAdd new "-swNNNdp" resource qualifier.
Dianne Hackborn [Fri, 20 May 2011 01:13:32 +0000 (18:13 -0700)]
Add new "-swNNNdp" resource qualifier.

Change-Id: I0101e88ca9d8d44138bdcaf571f24b0352f4f6ce

13 years agoFix 4462474: Fixes crash on 7" tablet due to using wrong resource
Jim Miller [Fri, 20 May 2011 00:11:08 +0000 (17:11 -0700)]
Fix 4462474: Fixes crash on 7" tablet due to using wrong resource

Change-Id: Id182bc6e9e69a308329412a91929a65af1329beb

13 years agoam b9537db8: Merge "DO NOT MERGE Action bar config changes" into honeycomb-mr2
Adam Powell [Fri, 20 May 2011 00:06:09 +0000 (17:06 -0700)]
am b9537db8: Merge "DO NOT MERGE Action bar config changes" into honeycomb-mr2

* commit 'b9537db8d9ee27efb4a98415ad2d6b50c1806e5d':
  DO NOT MERGE Action bar config changes

13 years agoFix 4462497: Move layouts from xlarge to large to enable 7" tablets
Jim Miller [Fri, 20 May 2011 00:05:30 +0000 (17:05 -0700)]
Fix 4462497: Move layouts from xlarge to large to enable 7" tablets

This fixes LockScreen on 7" tablets by moving the resources to xlarge.

In addition, it has some minor layout tweaks to center pattern and
wave unlock widgets on both so we can share the layout resources.

Change-Id: Ibeee9320c9effcae6cf55c9ca417854f468c8edb

13 years agoMerge "DO NOT MERGE Action bar config changes" into honeycomb-mr2
Adam Powell [Thu, 19 May 2011 22:48:38 +0000 (15:48 -0700)]
Merge "DO NOT MERGE Action bar config changes" into honeycomb-mr2

13 years agoDO NOT MERGE Action bar config changes
Adam Powell [Thu, 19 May 2011 22:02:50 +0000 (15:02 -0700)]
DO NOT MERGE Action bar config changes

Handle action bar padding on configuration changes when the app
handles these changes itself.

Change-Id: I044da9253a0be6b4bbabdc12891b6d4786725afa

13 years agoam 9c9088a5: Merge "Move softap config handling to WifiConfigStore" into honeycomb-mr2
Irfan Sheriff [Thu, 19 May 2011 21:57:54 +0000 (14:57 -0700)]
am 9c9088a5: Merge "Move softap config handling to WifiConfigStore" into honeycomb-mr2

* commit '9c9088a54f6dee7a13dcc7a12297137147b01baa':
  Move softap config handling to WifiConfigStore

13 years agoMerge "Move softap config handling to WifiConfigStore" into honeycomb-mr2
Irfan Sheriff [Thu, 19 May 2011 21:54:25 +0000 (14:54 -0700)]
Merge "Move softap config handling to WifiConfigStore" into honeycomb-mr2

13 years agoam 51fb9703: Merge "DO NOT MERGE: Add custom fragment anims for popping backstack...
Chet Haase [Thu, 19 May 2011 20:59:06 +0000 (13:59 -0700)]
am 51fb9703: Merge "DO NOT MERGE: Add custom fragment anims for popping backstack" into honeycomb-mr2

* commit '51fb97031f62b1181fc9eb6c636d09a68987d939':
  DO NOT MERGE: Add custom fragment anims for popping backstack

13 years agoMerge "DO NOT MERGE: Add custom fragment anims for popping backstack" into honeycomb-mr2
Chet Haase [Thu, 19 May 2011 20:57:03 +0000 (13:57 -0700)]
Merge "DO NOT MERGE: Add custom fragment anims for popping backstack" into honeycomb-mr2

13 years agoDO NOT MERGE: Add custom fragment anims for popping backstack
Chet Haase [Tue, 22 Mar 2011 18:35:22 +0000 (11:35 -0700)]
DO NOT MERGE: Add custom fragment anims for popping backstack

The previous fragment implementation allowed for animations
during fragment transitions, but did not account for the
different behavior of fragments when popping the back stack.
In general, you probably don't want to run the same animation
for putting a fragment on the stack as for popping it off, which
is what happens now. For example, you might fade a fragment out when
putting it on the stack. But when popping ot off, fading it out
is probably not the behavior you want.

The new API (setCustomAnimations() overload with two additional
parameters) allows developers to specify animations to be run
in the popping operation. Otherwise, the animations are null and
the operation will not be animated.

Change-Id: I53bbc6e6ec4e953b7ecdd99e2452d81857917de2

13 years agoMerge "Reset connection while data state changed." into honeycomb-LTE
Wink Saville [Thu, 19 May 2011 18:25:45 +0000 (11:25 -0700)]
Merge "Reset connection while data state changed." into honeycomb-LTE

13 years agoam 146a0b45: am fde9ac72: Merge "docs: Cherrypicking change from honeycomb Change...
Joe Fernandez [Thu, 19 May 2011 17:59:16 +0000 (10:59 -0700)]
am 146a0b45: am fde9ac72: Merge "docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74" into honeycomb-mr1

* commit '146a0b4522db2d782953a464fe63adcd7e1569c2':
  docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74

13 years agoam fde9ac72: Merge "docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d...
Joe Fernandez [Thu, 19 May 2011 17:53:04 +0000 (10:53 -0700)]
am fde9ac72: Merge "docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74" into honeycomb-mr1

* commit 'fde9ac72668ced2e473ad247cacc8a4bdd05996f':
  docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74

13 years agoMerge "docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c817...
Joe Fernandez [Thu, 19 May 2011 17:49:45 +0000 (10:49 -0700)]
Merge "docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74" into honeycomb-mr1

13 years agoam a88b42d5: USB: Add method to access raw USB device descriptors
Mike Lockwood [Thu, 19 May 2011 17:01:53 +0000 (10:01 -0700)]
am a88b42d5: USB: Add method to access raw USB device descriptors

* commit 'a88b42d569a91290477d8f5731a2ee43931271da':
  USB: Add method to access raw USB device descriptors

13 years agoUSB: Add method to access raw USB device descriptors
Mike Lockwood [Thu, 19 May 2011 15:52:40 +0000 (11:52 -0400)]
USB: Add method to access raw USB device descriptors

Change-Id: Id5b46ede14a838198a59bdc8ed4732942044cfa8
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoam b7ec3e41: Merge "DO NOT MERGE Adjust action bar home/up sizing/padding for smaller...
Adam Powell [Thu, 19 May 2011 02:14:44 +0000 (19:14 -0700)]
am b7ec3e41: Merge "DO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets." into honeycomb-mr2

* commit 'b7ec3e41a6b3423d1669ae784a8ad8fbe32df29d':
  DO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets.

13 years agoMerge "DO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets...
Adam Powell [Thu, 19 May 2011 02:13:22 +0000 (19:13 -0700)]
Merge "DO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets." into honeycomb-mr2

13 years agoDO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets.
Adam Powell [Thu, 19 May 2011 02:10:46 +0000 (19:10 -0700)]
DO NOT MERGE Adjust action bar home/up sizing/padding for smaller tablets.

Change-Id: I56a75189ae48f04934882661ce5014549a089769

13 years agoam b18e700c: am aa0834e3: Merge "LayoutLib: support the new baseline/margin query...
Xavier Ducrohet [Thu, 19 May 2011 00:43:27 +0000 (17:43 -0700)]
am b18e700c: am aa0834e3: Merge "LayoutLib: support the new baseline/margin query API." into honeycomb-mr1

* commit 'b18e700cb9c1d7090904449fc6878b8eae1d4693':
  LayoutLib: support the new baseline/margin query API.

13 years agoam aa0834e3: Merge "LayoutLib: support the new baseline/margin query API." into honey...
Xavier Ducrohet [Thu, 19 May 2011 00:40:08 +0000 (17:40 -0700)]
am aa0834e3: Merge "LayoutLib: support the new baseline/margin query API." into honeycomb-mr1

* commit 'aa0834e3e6c3ceef6f78e3e03d1d27046e5237a0':
  LayoutLib: support the new baseline/margin query API.

13 years agoMerge "LayoutLib: support the new baseline/margin query API." into honeycomb-mr1
Xavier Ducrohet [Thu, 19 May 2011 00:36:16 +0000 (17:36 -0700)]
Merge "LayoutLib: support the new baseline/margin query API." into honeycomb-mr1

13 years agoam d148a499: Merge "Using widevine:// to stream adaptive bitrate wvm content no longe...
James Dong [Wed, 18 May 2011 23:09:58 +0000 (16:09 -0700)]
am d148a499: Merge "Using widevine:// to stream adaptive bitrate wvm content no longer" into honeycomb-mr2

* commit 'd148a499c27145e0473f89ece0500ebed38f875f':
  Using widevine:// to stream adaptive bitrate wvm content no longer

13 years agoMerge "Using widevine:// to stream adaptive bitrate wvm content no longer" into honey...
James Dong [Wed, 18 May 2011 23:06:14 +0000 (16:06 -0700)]
Merge "Using widevine:// to stream adaptive bitrate wvm content no longer" into honeycomb-mr2

13 years agoReset connection while data state changed.
Wink Saville [Wed, 18 May 2011 22:59:04 +0000 (15:59 -0700)]
Reset connection while data state changed.

Check data call states and reset connection if any link properties changed.

Change-Id: I008aea969378648192852161959fdf4aad6211a1

13 years agoMove softap config handling to WifiConfigStore
Irfan Sheriff [Tue, 10 May 2011 23:26:06 +0000 (16:26 -0700)]
Move softap config handling to WifiConfigStore

Move softap config to flat file and read/write on a seperate handler thread

Bug: 4391796

Change-Id: Iafe43200d7f829df7ced20a4e7b0ed451ad22a05

13 years agoSwitch to use netd to add/remove routes.
Robert Greenwalt [Tue, 10 May 2011 22:05:02 +0000 (15:05 -0700)]
Switch to use netd to add/remove routes.

Also adds support for v6 routes and for removing single routes.

Change-Id: I1c4f08c7938371090944d8d6f603e1e0d6d70c01

13 years agoam 6ad07db7: Merge "Fix fake display size when rotated." into honeycomb-mr2
Dianne Hackborn [Wed, 18 May 2011 22:12:07 +0000 (15:12 -0700)]
am 6ad07db7: Merge "Fix fake display size when rotated." into honeycomb-mr2

* commit '6ad07db7a2c289d036f081eb0c7a666cdb77b548':
  Fix fake display size when rotated.

13 years agoMerge "Fix fake display size when rotated." into honeycomb-mr2
Dianne Hackborn [Wed, 18 May 2011 22:09:58 +0000 (15:09 -0700)]
Merge "Fix fake display size when rotated." into honeycomb-mr2

13 years agoFix fake display size when rotated.
Dianne Hackborn [Wed, 18 May 2011 22:07:48 +0000 (15:07 -0700)]
Fix fake display size when rotated.

Change-Id: Ic8a1dbe32cf0cb3c5cdc9b9294b98e810558f875

13 years agoam 07e9267d: Merge "DO NOT MERGE For bug 4422428 Squashed commit of the following...
Gloria Wang [Wed, 18 May 2011 16:19:56 +0000 (09:19 -0700)]
am 07e9267d: Merge "DO NOT MERGE For bug 4422428 Squashed commit of the following:" into honeycomb-mr2

* commit '07e9267d33bb199d0a2b8de221c64541bdf2465a':
  DO NOT MERGE For bug 4422428 Squashed commit of the following:

13 years agoMerge "DO NOT MERGE For bug 4422428 Squashed commit of the following:" into honeycomb-mr2
Gloria Wang [Wed, 18 May 2011 16:17:50 +0000 (09:17 -0700)]
Merge "DO NOT MERGE For bug 4422428 Squashed commit of the following:" into honeycomb-mr2

13 years agoLinkproperties update via unsol data call state change.
Kazuhiro Ondo [Sun, 1 May 2011 01:10:57 +0000 (20:10 -0500)]
Linkproperties update via unsol data call state change.

Handles the scenario of radio technology handover with IP continuity.
Once RIL/Modem finished a handover operation, an unsol data call state
change will be send up to FW notifying all link propertes changes.
FW will then re-configure the device with new link properties
including iptable used by Tethering.

Change-Id: I05e29f66ac3db8ba4274d3662642607742ba1d12

13 years agoMerge "Remove SIM operator name hack" into honeycomb-LTE
Wink Saville [Wed, 18 May 2011 03:35:35 +0000 (20:35 -0700)]
Merge "Remove SIM operator name hack" into honeycomb-LTE

13 years agoam 30a76196: Merge "Fix bug 4416126 - orientation change bug with action bar overflow...
Adam Powell [Wed, 18 May 2011 03:25:58 +0000 (20:25 -0700)]
am 30a76196: Merge "Fix bug 4416126 - orientation change bug with action bar overflow menu" into honeycomb-mr2

* commit '30a76196c8f426b530a80166817d3280acb2b100':
  Fix bug 4416126 - orientation change bug with action bar overflow menu

13 years agoMerge "Fix bug 4416126 - orientation change bug with action bar overflow menu" into...
Adam Powell [Wed, 18 May 2011 03:24:39 +0000 (20:24 -0700)]
Merge "Fix bug 4416126 - orientation change bug with action bar overflow menu" into honeycomb-mr2

13 years agoFix bug 4416126 - orientation change bug with action bar overflow menu
Adam Powell [Wed, 18 May 2011 03:20:47 +0000 (20:20 -0700)]
Fix bug 4416126 - orientation change bug with action bar overflow menu

Change-Id: I8e327bd41e610c792db4eed36ed46b58e94c0ea0

13 years agoam a429d5df: Merge "Improve compat mode scaling implementation." into honeycomb-mr2
Dianne Hackborn [Wed, 18 May 2011 01:40:12 +0000 (18:40 -0700)]
am a429d5df: Merge "Improve compat mode scaling implementation." into honeycomb-mr2

* commit 'a429d5df1aa59d817d694b96a07351224cc5d146':
  Improve compat mode scaling implementation.

13 years agoMerge "Improve compat mode scaling implementation." into honeycomb-mr2
Dianne Hackborn [Wed, 18 May 2011 01:38:37 +0000 (18:38 -0700)]
Merge "Improve compat mode scaling implementation." into honeycomb-mr2

13 years agoam 185d9c4d: Merge "Tweak padding and sizing of alert dialog elements to fit better...
Adam Powell [Wed, 18 May 2011 01:32:06 +0000 (18:32 -0700)]
am 185d9c4d: Merge "Tweak padding and sizing of alert dialog elements to fit better in landscape mode on large screen devices. Integrate new dialog frame assets that take up less space." into honeycomb-mr2

* commit '185d9c4dbf4b0ee976e4d0c3ea9d3ba307491339':
  Tweak padding and sizing of alert dialog elements to fit better in landscape mode on large screen devices. Integrate new dialog frame assets that take up less space.

13 years agoMerge "Tweak padding and sizing of alert dialog elements to fit better in landscape...
Adam Powell [Wed, 18 May 2011 01:30:08 +0000 (18:30 -0700)]
Merge "Tweak padding and sizing of alert dialog elements to fit better in landscape mode on large screen devices. Integrate new dialog frame assets that take up less space." into honeycomb-mr2

13 years agoImprove compat mode scaling implementation.
Dianne Hackborn [Wed, 18 May 2011 00:44:51 +0000 (17:44 -0700)]
Improve compat mode scaling implementation.

Rip out the old funky code for trying to restrict the app window
sizes to be within the compat mode range.  Instead, we know rely
entirely on scaling -- we deal with windows always with the scaling
applied so that the window manager doesn't have to deal with them
specially.  Instead, we just apply the inverse scale at the few
points we need to do something the app sees.

Change-Id: I785409dd4513b5f738684e1635dc8f770c249651

13 years agoTweak padding and sizing of alert dialog elements to fit better in
Adam Powell [Tue, 17 May 2011 03:32:16 +0000 (20:32 -0700)]
Tweak padding and sizing of alert dialog elements to fit better in
landscape mode on large screen devices. Integrate new dialog frame
assets that take up less space.

Change-Id: Icd1261063511355844579d6c5c34f32284031f82

13 years agoRemove SIM operator name hack
Kazuhiro Ondo [Tue, 17 May 2011 23:13:57 +0000 (18:13 -0500)]
Remove SIM operator name hack

Change-Id: I28c6f94dd6c6bab3a3025f67013a39b3ea0fb0a1

13 years agoam 4ef5f4dc: am 566489db: Cherrypick from HC--3.0 appwidget features. Change-Id:...
Katie McCormick [Wed, 18 May 2011 00:40:38 +0000 (17:40 -0700)]
am 4ef5f4dc: am 566489db: Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad132cc089cf62d

* commit '4ef5f4dce666b90c786da61bb2371dc51ea8dc40':
  Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad132cc089cf62d

13 years agoam 566489db: Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f4526...
Katie McCormick [Wed, 18 May 2011 00:38:04 +0000 (17:38 -0700)]
am 566489db: Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad132cc089cf62d

* commit '566489dbf6047ce90f3765b4058723dbcd731b30':
  Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad132cc089cf62d

13 years agoCherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad13...
Katie McCormick [Tue, 29 Mar 2011 00:08:08 +0000 (17:08 -0700)]
Cherrypick from HC--3.0 appwidget features. Change-Id: Idf9e0003db0f45264ca34e513ad132cc089cf62d

Change-Id: I7dd7ec732aa3089b4e20d5a859f35e1bbd846c3b

13 years agoam 27ac64ec: Merge "StorageVolume: Add getStorageId() accessor" into honeycomb-mr2
Mike Lockwood [Tue, 17 May 2011 23:44:51 +0000 (16:44 -0700)]
am 27ac64ec: Merge "StorageVolume: Add getStorageId() accessor" into honeycomb-mr2

* commit '27ac64eceee8d4e392983861c6bc6bd620e4c6f7':
  StorageVolume: Add getStorageId() accessor

13 years agoMerge "StorageVolume: Add getStorageId() accessor" into honeycomb-mr2
Mike Lockwood [Tue, 17 May 2011 23:42:48 +0000 (16:42 -0700)]
Merge "StorageVolume: Add getStorageId() accessor" into honeycomb-mr2

13 years agoam 1147bf63: Don\'t use mobile for large uastring
John Reck [Tue, 17 May 2011 23:18:11 +0000 (16:18 -0700)]
am 1147bf63: Don\'t use mobile for large uastring

* commit '1147bf638a791ef403c0cc6654f4decd1b0d67c1':
  Don't use mobile for large uastring

13 years agodocs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc305...
Joe Fernandez [Thu, 12 May 2011 17:00:25 +0000 (10:00 -0700)]
docs: Cherrypicking change from honeycomb Change-Id: I6b62a5c608d3f17f5ff3c81773dc3055d0428d74

Change-Id: I85e6b923857d538df8e1e040030aa988279de9eb

13 years agoDon't use mobile for large uastring
John Reck [Tue, 17 May 2011 21:38:44 +0000 (14:38 -0700)]
Don't use mobile for large uastring

 Bug: 4427114

Change-Id: I0bf58fd2c340e66c15bf782819bf896d227c5455

13 years agoStorageVolume: Add getStorageId() accessor
Mike Lockwood [Tue, 17 May 2011 21:19:37 +0000 (17:19 -0400)]
StorageVolume: Add getStorageId() accessor

This ID is used for MTP as well as per volume querying in the media provider.

Change-Id: Ic4fc986d972bd477730643f7e9450c390c0b3a4b
Signed-off-by: Mike Lockwood <lockwood@android.com>
13 years agoam da480945: Merge "Import revised translations. DO NOT MERGE" into honeycomb-mr2
Eric Fischer [Tue, 17 May 2011 20:27:59 +0000 (13:27 -0700)]
am da480945: Merge "Import revised translations.  DO NOT MERGE" into honeycomb-mr2

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

13 years agoMerge "Import revised translations. DO NOT MERGE" into honeycomb-mr2
Eric Fischer [Tue, 17 May 2011 20:25:22 +0000 (13:25 -0700)]
Merge "Import revised translations.  DO NOT MERGE" into honeycomb-mr2

13 years agoam 50b27631: Remove some cruft that was left in config.xml by mistake
Mike Lockwood [Tue, 17 May 2011 20:12:32 +0000 (13:12 -0700)]
am 50b27631: Remove some cruft that was left in config.xml by mistake

* commit '50b27631598d56cf2def58270ddcf1619045dda4':
  Remove some cruft that was left in config.xml by mistake