OSDN Git Service

android-x86/frameworks-base.git
10 years agoFix jank in TextView.Marquee
Jorim Jaggi [Tue, 1 Jul 2014 12:59:34 +0000 (14:59 +0200)]
Fix jank in TextView.Marquee

Use Choreographer animation callbacks to update the scrolling and
make the delta dependent on the time passed since the last update.

Change-Id: If6ce365014e8d32dadfc93bba0d4733050f673f7

10 years agoMerge "Fix clipping of notifications on lockscreen."
Jorim Jaggi [Tue, 1 Jul 2014 15:10:52 +0000 (15:10 +0000)]
Merge "Fix clipping of notifications on lockscreen."

10 years agoFix clipping of notifications on lockscreen.
Jorim Jaggi [Tue, 1 Jul 2014 01:17:05 +0000 (03:17 +0200)]
Fix clipping of notifications on lockscreen.

Bug: 15942321
Change-Id: I5838c24987de9ed4d1df550df408536271b047f1

10 years agoMerge "QS: Improve dual tile labels."
John Spurlock [Tue, 1 Jul 2014 14:42:15 +0000 (14:42 +0000)]
Merge "QS: Improve dual tile labels."

10 years agoQS: Improve dual tile labels.
John Spurlock [Tue, 1 Jul 2014 00:47:20 +0000 (20:47 -0400)]
QS: Improve dual tile labels.

Use the solid dropdown caret and improve vertical spacing.

Change-Id: I839fb3130a0fc621a2217e5211fb7b4f053a5685

10 years agoMerge "Fix onTrimMemory for HardwareRenderer"
John Reck [Tue, 1 Jul 2014 14:21:39 +0000 (14:21 +0000)]
Merge "Fix onTrimMemory for HardwareRenderer"

10 years agoFix onTrimMemory for HardwareRenderer
John Reck [Mon, 30 Jun 2014 23:20:04 +0000 (16:20 -0700)]
Fix onTrimMemory for HardwareRenderer

 Also fixes detachFunctor possibly drawing after return

 Bug: 15189843
 Bug: 15990672

Change-Id: I64c48cb674c461a8eeaba407b697e09f72c98ce3

10 years agoMerge "Fix scrim in PIN/PUK."
Jorim Jaggi [Tue, 1 Jul 2014 13:52:32 +0000 (13:52 +0000)]
Merge "Fix scrim in PIN/PUK."

10 years agoFix scrim in PIN/PUK.
Jorim Jaggi [Mon, 30 Jun 2014 22:00:14 +0000 (00:00 +0200)]
Fix scrim in PIN/PUK.

Bug: 15949149
Change-Id: Ia68903445f256ad5db3d46d6916d57b57218a14d

10 years agoFix scrim flashing when no security is set.
Jorim Jaggi [Mon, 30 Jun 2014 21:53:39 +0000 (23:53 +0200)]
Fix scrim flashing when no security is set.

Change-Id: Iccd07c39b57c7bcf3d4d26a00a46926df56eddbc

10 years agoImprove peek behavior and fix a few bugs in PanelView
Jorim Jaggi [Mon, 30 Jun 2014 17:56:24 +0000 (19:56 +0200)]
Improve peek behavior and fix a few bugs in PanelView

- A single tap on the bar peeks and then dismisses it a again.
- Wait for the peek until the layout has happened.
- Add logic to only peek if user is not flinging.
- Fix a few bugs with panel holes (onExpandingStarted/Finished not
  called correctly.

Bug: 15856091
Bug: 15407838
Bug: 15942322

Change-Id: I1aedf9d01bc8db3d7fed7cea6e341b0be18a8bd9

10 years agoImprove fling logic for opening the notification shade
Jorim Jaggi [Sun, 29 Jun 2014 23:39:07 +0000 (01:39 +0200)]
Improve fling logic for opening the notification shade

Bug: 15858126
Change-Id: I800b00f80b315218358ea9acbd3614e6d5c87c45

10 years agoFix a bug where a short fling resulted in a bad state
Jorim Jaggi [Fri, 27 Jun 2014 16:01:12 +0000 (18:01 +0200)]
Fix a bug where a short fling resulted in a bad state

Change-Id: I43900d1cb72a03e2fb2e6cb2dea44bfad9792fcc

10 years agoImprove motion when expanding/collapsing status bar.
Jorim Jaggi [Wed, 25 Jun 2014 01:08:25 +0000 (03:08 +0200)]
Improve motion when expanding/collapsing status bar.

- Don't fade the whole panel anymore.
- Parallax effect for QS header translation, fade on keyguard.
- Improve fling curve for dismissing the panel.
- Improve peeking behavior.

Bug: 14804452
Bug: 15407838
Change-Id: I34b7bcd457cb8a037e0bb06e9802ec66d2b39b73

10 years agoKeep a mirror of the system icons while expanding the panel
Jorim Jaggi [Wed, 25 Jun 2014 03:23:42 +0000 (05:23 +0200)]
Keep a mirror of the system icons while expanding the panel

Because the icons are shown in two different places at the same time
(in the QS header and the status bar), we introduce a mirror view
which does nothing except draw the contents of the other view to
draw it at both locations during the animation.

Bug: 15407838
Change-Id: I82edc8b4fb7347fa8dadfb81762d22796d37fa3c

10 years agoMerge "Fix scrim flashing when no security is set."
Jorim Jaggi [Tue, 1 Jul 2014 13:51:49 +0000 (13:51 +0000)]
Merge "Fix scrim flashing when no security is set."

10 years agoMerge "Improve peek behavior and fix a few bugs in PanelView"
Jorim Jaggi [Tue, 1 Jul 2014 13:51:28 +0000 (13:51 +0000)]
Merge "Improve peek behavior and fix a few bugs in PanelView"

10 years agoMerge "Improve fling logic for opening the notification shade"
Jorim Jaggi [Tue, 1 Jul 2014 13:50:57 +0000 (13:50 +0000)]
Merge "Improve fling logic for opening the notification shade"

10 years agonull-check before derefing title in MenuItemImpl
Chet Haase [Tue, 1 Jul 2014 00:59:15 +0000 (17:59 -0700)]
null-check before derefing title in MenuItemImpl

The toString() method in MenuItemImpl returns mTitle.toString(),
which crashes when the title is null (which it can be, since there
is no requirement that a title be non-null, and you can get one
by simply not assigning a title to begin with or by setting it
to null).

Issue #13420311 MenuItemImpl can't handle a null title

Change-Id: I701d1d565f1d254ffdd41ca64c1abaf2906edb79

10 years agoDeprecate the Cookie Sync Manager
Hector Dearman [Thu, 22 May 2014 12:50:15 +0000 (13:50 +0100)]
Deprecate the Cookie Sync Manager

The CookieSyncManager is largely useless as the WebView
automatically syncs cookies every 30s (whether you like it
or not). The one method which needs to be saved is sync,
there is no other way to force a sync without this.
We move sync to the CookieManager and rename it to flush
for greater consistency.

Bug: 11060034
Change-Id: I8a14998020eea54f196fc6ed845b09ed69cfd447

10 years agoam 8c1c0a68: am 7f319c47: am 1dc550fa: Merge "Fix packing of values at offset 16."
Narayan Kamath [Tue, 1 Jul 2014 10:43:41 +0000 (10:43 +0000)]
am 8c1c0a68: am 7f319c47: am 1dc550fa: Merge "Fix packing of values at offset 16."

* commit '8c1c0a6881b1507f9ae25d753b64de185a7615b2':
  Fix packing of values at offset 16.

10 years agoam 7f319c47: am 1dc550fa: Merge "Fix packing of values at offset 16."
Narayan Kamath [Tue, 1 Jul 2014 10:23:44 +0000 (10:23 +0000)]
am 7f319c47: am 1dc550fa: Merge "Fix packing of values at offset 16."

* commit '7f319c47c8f5e947638eb1e5e73789ff83123bba':
  Fix packing of values at offset 16.

10 years agoam 1dc550fa: Merge "Fix packing of values at offset 16."
Narayan Kamath [Tue, 1 Jul 2014 09:22:10 +0000 (09:22 +0000)]
am 1dc550fa: Merge "Fix packing of values at offset 16."

* commit '1dc550fa7333257a130d71866be37181f8ee553b':
  Fix packing of values at offset 16.

10 years agoam 7459dfed: Merge "docs: add new UX images for notifications and wear" into klp...
Robert Ly [Tue, 1 Jul 2014 02:52:30 +0000 (02:52 +0000)]
am 7459dfed: Merge "docs: add new UX images for notifications and wear" into klp-modular-dev

* commit '7459dfed6c4353a9437f5c5fbbbc1738f465a432':
  docs: add new UX images for notifications and wear

10 years agoMerge "docs: add new UX images for notifications and wear" into klp-modular-dev
Robert Ly [Tue, 1 Jul 2014 02:46:53 +0000 (02:46 +0000)]
Merge "docs: add new UX images for notifications and wear" into klp-modular-dev

10 years agodocs: add new UX images for notifications and wear
Robert Ly [Tue, 1 Jul 2014 01:18:22 +0000 (18:18 -0700)]
docs: add new UX images for notifications and wear

Change-Id: I936209db7260c77aec425f3457497cd70a66b767

10 years agoam 5212ee08: Merge "docs: Add Javadocs for GMS Longhorn." into klp-modular-dev
Quddus Chong [Mon, 30 Jun 2014 21:51:32 +0000 (21:51 +0000)]
am 5212ee08: Merge "docs: Add Javadocs for GMS Longhorn." into klp-modular-dev

* commit '5212ee08f3061c07a6a323e9169b63b596c4c824':
  docs: Add Javadocs for GMS Longhorn.

10 years agoam 85a25e02: Merge "docs: Added "What\'s New" for GMS Longhorn (Google Play Services...
Quddus Chong [Mon, 30 Jun 2014 21:51:28 +0000 (21:51 +0000)]
am 85a25e02: Merge "docs: Added "What\'s New" for GMS Longhorn (Google Play Services 5.0)" into klp-modular-dev

* commit '85a25e02004f77595e352e03c1fdb11b6126db69':
  docs: Added "What's New" for GMS Longhorn (Google Play Services 5.0)

10 years agoam 326b1857: Merge "Fix docs" into klp-modular-dev
Tim Kilbourn [Mon, 30 Jun 2014 20:54:30 +0000 (20:54 +0000)]
am 326b1857: Merge "Fix docs" into klp-modular-dev

* commit '326b1857a5ced49f249358751e05ce237bfaefc8':
  Fix docs

10 years agoam e1e35d13: docs: fix notifications docs
Robert Ly [Mon, 30 Jun 2014 20:17:33 +0000 (20:17 +0000)]
am e1e35d13: docs: fix notifications docs

* commit 'e1e35d13023224c22a54ce074c45d2f8729b1c60':
  docs: fix notifications docs

10 years agodocs: fix notifications docs
Robert Ly [Mon, 30 Jun 2014 19:48:22 +0000 (12:48 -0700)]
docs: fix notifications docs

Change-Id: I14f55619ae0e0c53811c09410fec5ef8bf577ff6

10 years agoMerge "docs: Add Javadocs for GMS Longhorn." into klp-modular-dev
Quddus Chong [Mon, 30 Jun 2014 21:46:59 +0000 (21:46 +0000)]
Merge "docs: Add Javadocs for GMS Longhorn." into klp-modular-dev

10 years agoUpdate preloaded-classes for ART DO NOT MERGE
Brian Carlstrom [Mon, 30 Jun 2014 16:28:38 +0000 (09:28 -0700)]
Update preloaded-classes for ART DO NOT MERGE

Change-Id: If0b1bfa2fa1fc80351c11ff2936e1b204539aa64

10 years agoam 7ecb89fc: Merge "Change card title for admob." into klp-modular-dev
Dirk Dougherty [Mon, 30 Jun 2014 01:06:15 +0000 (01:06 +0000)]
am 7ecb89fc: Merge "Change card title for admob." into klp-modular-dev

* commit '7ecb89fc1e2b07e51dcc52fe6e778855dfb92c15':
  Change card title for admob.

10 years agoam 14ec9ade: Merge "Doc change: API diff 20." into klp-modular-dev
Dirk Dougherty [Mon, 30 Jun 2014 01:06:11 +0000 (01:06 +0000)]
am 14ec9ade: Merge "Doc change: API diff 20." into klp-modular-dev

* commit '14ec9adefa1cad0c5444bc938f0edaebaf4d1eee':
  Doc change: API diff 20.

10 years agoam 4cdf8373: add api 20
Robert Ly [Mon, 30 Jun 2014 01:00:08 +0000 (01:00 +0000)]
am 4cdf8373: add api 20

* commit '4cdf83735de741bb44a9078b080dbdaf9db891a0':
  add api 20

10 years agoam 63234bf7: Merge "Revert "add API reference docs filtering for level 20"" into...
Robert Ly [Mon, 30 Jun 2014 01:00:03 +0000 (01:00 +0000)]
am 63234bf7: Merge "Revert "add API reference docs filtering for level 20"" into klp-modular-dev

* commit '63234bf7ab9a05f2e8fb858a31af270ca82b33ad':
  Revert "add API reference docs filtering for level 20"

10 years agoresolved conflicts for merge of 4d329a8f to klp-modular-dev-plus-aosp
Robert Ly [Mon, 30 Jun 2014 00:55:24 +0000 (17:55 -0700)]
resolved conflicts for merge of 4d329a8f to klp-modular-dev-plus-aosp

Change-Id: Id8096712bc63fe16f93dca4a7963440e11087f7a

10 years agoadd api 20
Robert Ly [Sun, 29 Jun 2014 23:53:54 +0000 (16:53 -0700)]
add api 20

DO NOT MERGE

Change-Id: Iae685158ac9c08e3a074e36d60004faf995fd1c7

10 years agoam 6fff230d: Merge "docs : fix broken links" into klp-modular-dev
Robert Ly [Sun, 29 Jun 2014 23:42:55 +0000 (23:42 +0000)]
am 6fff230d: Merge "docs : fix broken links" into klp-modular-dev

* commit '6fff230d64b869ec9a3f3bb10ea5ae30b041a85a':
  docs : fix broken links

10 years agoam 50b55d61: docs: update notifications docs
Robert Ly [Sun, 29 Jun 2014 23:42:50 +0000 (23:42 +0000)]
am 50b55d61: docs: update notifications docs

* commit '50b55d61af63098d0b95e38afdc5c381b3373cd6':
  docs: update notifications docs

10 years agodocs: update notifications docs
Robert Ly [Sun, 29 Jun 2014 20:00:11 +0000 (13:00 -0700)]
docs: update notifications docs

Change-Id: I0473c75c31c4012dbb3fc81d155da237f8f1f7fd

10 years agoam 7b5abd15: Merge "docs: fix L Preview G+ links (permanently)" into klp-modular-dev
Scott Main [Sat, 28 Jun 2014 02:39:37 +0000 (02:39 +0000)]
am 7b5abd15: Merge "docs: fix L Preview G+ links (permanently)" into klp-modular-dev

* commit '7b5abd15ab15c9f36783dd00c1953d9cf16c33f7':
  docs: fix L Preview G+ links (permanently)

10 years agoam d2b869d0: revisions to the app structure design guide
smain@google.com [Sat, 28 Jun 2014 02:32:24 +0000 (02:32 +0000)]
am d2b869d0: revisions to the app structure design guide

* commit 'd2b869d052e65958545f2dc49c3eef8ff0066280':
  revisions to the app structure design guide

10 years agoam 4c42ab4b: (-s ours) Merge "Revert "Add api 20 to list used by reference docs....
Robert Ly [Sat, 28 Jun 2014 02:32:19 +0000 (02:32 +0000)]
am 4c42ab4b: (-s ours) Merge "Revert "Add api 20 to list used by reference docs."" into klp-modular-dev

* commit '4c42ab4ba59d75eca4883ece2944c30ca36b760f':
  Revert "Add api 20 to list used by reference docs."

10 years agoam e774eb93: (-s ours) Merge "Add api 20 to list used by reference docs." into klp...
Robert Ly [Sat, 28 Jun 2014 02:26:16 +0000 (02:26 +0000)]
am e774eb93: (-s ours) Merge "Add api 20 to list used by reference docs." into klp-modular-dev

* commit 'e774eb939875c02135c7ce9af8e81322a7c0ab59':
  Add api 20 to list used by reference docs.

10 years agorevisions to the app structure design guide
smain@google.com [Sat, 28 Jun 2014 00:05:32 +0000 (17:05 -0700)]
revisions to the app structure design guide

Change-Id: I15e68e454180b848db81791350ba7985817c0930

10 years agoam 67421351: Merge "fix links to wear downloads" into klp-modular-dev
smain@google.com [Fri, 27 Jun 2014 22:57:57 +0000 (22:57 +0000)]
am 67421351: Merge "fix links to wear downloads" into klp-modular-dev

* commit '67421351cc6fd99aef741bb3bc2599bcb1288d1d':
  fix links to wear downloads

10 years agodocs: Add Javadocs for GMS Longhorn.
Quddus Chong [Thu, 12 Jun 2014 20:59:34 +0000 (13:59 -0700)]
docs: Add Javadocs for GMS Longhorn.

Change-Id: I2662b0af0609450364cbcc4666535fd57eec3ce7

10 years agoam 6ebcfb87: docs: notif image
Robert Ly [Fri, 27 Jun 2014 18:17:19 +0000 (18:17 +0000)]
am 6ebcfb87: docs: notif image

* commit '6ebcfb87b8111ee7110aeade6fba35e1862528da':
  docs: notif image

10 years agodocs: notif image
Robert Ly [Fri, 27 Jun 2014 18:12:04 +0000 (11:12 -0700)]
docs: notif image

Change-Id: I2ee3e1da39297f74c8142875c3e71fb0953f5a46

10 years agoam 137d9da3: Merge "docs: fix images for notifications" into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 18:03:41 +0000 (18:03 +0000)]
am 137d9da3: Merge "docs: fix images for notifications" into klp-modular-dev

* commit '137d9da3aab652dccc82f4b5741d1c48b8b6cfe9':
  docs: fix images for notifications

10 years agoam 5627b521: Merge "fix build" into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 17:21:18 +0000 (17:21 +0000)]
am 5627b521: Merge "fix build" into klp-modular-dev

* commit '5627b521e058058b2496a076256b727e0635ea88':
  fix build

10 years agoam ba102925: Merge "more doc fixes for notifcations and wear" into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 17:13:40 +0000 (17:13 +0000)]
am ba102925: Merge "more doc fixes for notifcations and wear" into klp-modular-dev

* commit 'ba1029257999fbfc6c7741d05cee10b8f2036f2f':
  more doc fixes for notifcations and wear

10 years agoMerge "docs: Added "What's New" for GMS Longhorn (Google Play Services 5.0)" into...
Quddus Chong [Mon, 30 Jun 2014 21:46:50 +0000 (21:46 +0000)]
Merge "docs: Added "What's New" for GMS Longhorn (Google Play Services 5.0)" into klp-modular-dev

10 years agoMerge "Fix docs" into klp-modular-dev
Tim Kilbourn [Mon, 30 Jun 2014 20:49:43 +0000 (20:49 +0000)]
Merge "Fix docs" into klp-modular-dev

10 years agoFix docs
Tim Kilbourn [Mon, 30 Jun 2014 20:33:52 +0000 (13:33 -0700)]
Fix docs

Update a few references to the Leanback theme.

https://code.google.com/p/android/issues/detail?id=72757

Change-Id: I47387433cc02fd29b62b729bc34756cef1d539f3

10 years agoMerge "docs: fix L Preview G+ links (permanently)" into klp-modular-dev
Scott Main [Sat, 28 Jun 2014 02:33:47 +0000 (02:33 +0000)]
Merge "docs: fix L Preview G+ links (permanently)" into klp-modular-dev

10 years agodocs: fix L Preview G+ links (permanently)
Joe Fernandez [Sat, 28 Jun 2014 00:00:59 +0000 (17:00 -0700)]
docs: fix L Preview G+ links (permanently)

Change-Id: I699ae07a977495a23c3cb0f440f90c856bc17a3e

10 years agoMerge "fix build" into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 17:16:55 +0000 (17:16 +0000)]
Merge "fix build" into klp-modular-dev

10 years agofix build
Robert Ly [Fri, 27 Jun 2014 17:13:58 +0000 (10:13 -0700)]
fix build

Change-Id: I66278269f8f02358c6d2529ef8839eb1ea42fdc4

10 years agomore doc fixes for notifcations and wear
Robert Ly [Fri, 27 Jun 2014 16:25:42 +0000 (09:25 -0700)]
more doc fixes for notifcations and wear

Change-Id: I9f0d168a8ebafb778924919766910b79504ebf68

10 years agoMerge "Change card title for admob." into klp-modular-dev
Dirk Dougherty [Mon, 30 Jun 2014 01:04:44 +0000 (01:04 +0000)]
Merge "Change card title for admob." into klp-modular-dev

10 years agoChange card title for admob.
Dirk Dougherty [Fri, 27 Jun 2014 22:59:15 +0000 (15:59 -0700)]
Change card title for admob.

Change-Id: Ia4b4eaf7bbd54e9c546f740a5095431081d1ebd9

10 years agoMerge "Doc change: API diff 20." into klp-modular-dev
Dirk Dougherty [Mon, 30 Jun 2014 01:00:49 +0000 (01:00 +0000)]
Merge "Doc change: API diff 20." into klp-modular-dev

10 years agoDoc change: API diff 20.
Dirk Dougherty [Mon, 23 Jun 2014 19:11:35 +0000 (12:11 -0700)]
Doc change: API diff 20.

Change-Id: I1d3e00c1e62568c04abe6531819e75873df235c0

10 years agoMerge "Add api 20 to list used by reference docs." into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 22:55:50 +0000 (22:55 +0000)]
Merge "Add api 20 to list used by reference docs." into klp-modular-dev

10 years agoAdd api 20 to list used by reference docs.
Dirk Dougherty [Fri, 27 Jun 2014 22:44:19 +0000 (15:44 -0700)]
Add api 20 to list used by reference docs.

Change-Id: Icdf0e9238846f943db527becde92d38f362a9f32

10 years agoam af19c795: Merge "fix gmscore preview isntructions" into klp-modular-dev
Robert Ly [Fri, 27 Jun 2014 14:35:28 +0000 (14:35 +0000)]
am af19c795: Merge "fix gmscore preview isntructions" into klp-modular-dev

* commit 'af19c795e275b1e7d16fad351b3a14f74ef29088':
  fix gmscore preview isntructions

10 years agoam 3822bf89: change the G+ community link
smain@google.com [Fri, 27 Jun 2014 01:19:21 +0000 (01:19 +0000)]
am 3822bf89: change the G+ community link

* commit '3822bf8935310f8f94a534b986a2af935336d7e8':
  change the G+ community link

10 years agochange the G+ community link
smain@google.com [Fri, 27 Jun 2014 01:12:51 +0000 (18:12 -0700)]
change the G+ community link

Change-Id: I68d453062232b739c3fdaee193eb9a20cd03d8f8

10 years agoam cf54f881: docs: Replaced image in L Preview material docs
Ricardo Cervera [Fri, 27 Jun 2014 01:03:39 +0000 (01:03 +0000)]
am cf54f881: docs: Replaced image in L Preview material docs

* commit 'cf54f881aced94aec5df3b956cfc6b380cbc6b87':
  docs: Replaced image in L Preview material docs

10 years agodocs: Replaced image in L Preview material docs
Ricardo Cervera [Fri, 27 Jun 2014 00:53:12 +0000 (17:53 -0700)]
docs: Replaced image in L Preview material docs

Change-Id: I7db905f0fc8ae2bf9826d74bc7030d5a41cd2859

10 years agoMerge "Revert "add API reference docs filtering for level 20"" into klp-modular-dev
Robert Ly [Sun, 29 Jun 2014 23:50:00 +0000 (23:50 +0000)]
Merge "Revert "add API reference docs filtering for level 20"" into klp-modular-dev

10 years agoRevert "add API reference docs filtering for level 20"
Robert Ly [Sun, 29 Jun 2014 23:49:46 +0000 (23:49 +0000)]
Revert "add API reference docs filtering for level 20"

This reverts commit 7d7d4d6b86bdbfc54c63830351cf8d2f3830b68a.

Change-Id: I41e89bf297cb11db62601b3df0e6c655d7579007

10 years agoadd API reference docs filtering for level 20
Robert Ly [Sun, 29 Jun 2014 23:39:06 +0000 (16:39 -0700)]
add API reference docs filtering for level 20

Change-Id: Iaab9d0965511d0394e7be29adb0fbcfd2904b857

10 years agoMerge "docs : fix broken links" into klp-modular-dev
Robert Ly [Sun, 29 Jun 2014 23:40:33 +0000 (23:40 +0000)]
Merge "docs : fix broken links" into klp-modular-dev

10 years agodocs : fix broken links
Robert Ly [Sun, 29 Jun 2014 23:38:21 +0000 (16:38 -0700)]
docs : fix broken links

Change-Id: I75d8cbe8abe904bba44cc64d5557c8e14060cb8a

10 years agoMerge "add API reference docs filtering for level 20" into klp-modular-dev
Robert Ly [Sun, 29 Jun 2014 23:41:08 +0000 (23:41 +0000)]
Merge "add API reference docs filtering for level 20" into klp-modular-dev

10 years agoMerge "Add a method to set a profile owner and active admin at once"
Amith Yamasani [Tue, 1 Jul 2014 10:09:39 +0000 (10:09 +0000)]
Merge "Add a method to set a profile owner and active admin at once"

10 years agoAdd a method to set a profile owner and active admin at once
Amith Yamasani [Tue, 1 Jul 2014 10:06:12 +0000 (15:36 +0530)]
Add a method to set a profile owner and active admin at once

This can be used by system apps to register a profile owner during setup

Bug: 15922051
Change-Id: Iee1b5adeb47d7e40ab36df18e3a057d8ee430f46

10 years agoUpdate javadoc for android.os.Bundle.
Narayan Kamath [Thu, 26 Jun 2014 17:10:51 +0000 (18:10 +0100)]
Update javadoc for android.os.Bundle.

Call out the fact that defaultValue is returned if a null
mapping exists for a given key.

bug: https://code.google.com/p/android/issues/detail?id=68453

(cherry picked from commit ca2197b0457b1626b95a053d835ceaca43ac0286)

Change-Id: Iec70478ae091bb222be6e9ef9726c817395e9e23

10 years agoMerge "Store and retrieve default Guest settings"
Amith Yamasani [Tue, 1 Jul 2014 07:47:59 +0000 (07:47 +0000)]
Merge "Store and retrieve default Guest settings"

10 years agoStore and retrieve default Guest settings
Amith Yamasani [Mon, 30 Jun 2014 09:25:07 +0000 (14:55 +0530)]
Store and retrieve default Guest settings

Save the default guest restrictions for use when a guest is created.

Bug: 15761405
Change-Id: I28db7d823944b0b47527a4909c10cc856c842a62

10 years agoam 9baaf2ce: am 7459dfed: Merge "docs: add new UX images for notifications and wear...
Robert Ly [Tue, 1 Jul 2014 02:57:11 +0000 (02:57 +0000)]
am 9baaf2ce: am 7459dfed: Merge "docs: add new UX images for notifications and wear" into klp-modular-dev

* commit '9baaf2ce843ec84424e10aa10cb7e367951b9306':
  docs: add new UX images for notifications and wear

10 years agoMerge "Make MediaSessionToken an inner class of MediaSession."
Jeff Brown [Tue, 1 Jul 2014 02:47:58 +0000 (02:47 +0000)]
Merge "Make MediaSessionToken an inner class of MediaSession."

10 years agoMS: Adding Support for Emergency APN in Telephony Framework
Ram [Thu, 26 Jun 2014 18:03:44 +0000 (11:03 -0700)]
MS: Adding Support for Emergency APN in Telephony Framework
(base/telephony)

Replacement for https://partner-android-review.googlesource.com/#/c/171175/

Change-Id: I16fc37f5c00ed79f2370bc46554fc7a24c52c4cb
Conflicts:
core/java/android/net/ConnectivityManager.java

10 years agoMake MediaSessionToken an inner class of MediaSession.
Jeff Brown [Wed, 25 Jun 2014 03:46:03 +0000 (20:46 -0700)]
Make MediaSessionToken an inner class of MediaSession.

Also add some missing AIDLs to the framework makefile to ensure
they are included in the SDK.

Change-Id: If85a3091c7591e0b3bbe6cc4bb74aba2284b4f42

10 years agoMerge "Refactor handling sequences in HdmiControlService"
Jinsuk Kim [Mon, 30 Jun 2014 22:49:43 +0000 (22:49 +0000)]
Merge "Refactor handling sequences in HdmiControlService"

10 years agoAdd WBS support on Bluedroid (6/6)
Mudumba Ananth [Sun, 27 Apr 2014 20:11:00 +0000 (13:11 -0700)]
Add WBS support on Bluedroid (6/6)

         Bug 13764086

Change-Id: I7afbddb02fc247d7799ab0fb264a467c7853cb32

10 years agoRefactor handling sequences in HdmiControlService
Jinsuk Kim [Fri, 27 Jun 2014 07:39:26 +0000 (16:39 +0900)]
Refactor handling sequences in HdmiControlService

- Rewrote some methods to match more closely to the handling
  sequences in guideline
- Added setControlEnabled() API in the aidl
- Handled <Routing Control> command
- Handled some scenarios invoking RoutingControlAction

Change-Id: I5db0c6fc775cef709c2e0f338b85937deebf2a54

10 years agoMerge "More fixes for Connection and RemoteConnection"
Sailesh Nepal [Mon, 30 Jun 2014 22:25:43 +0000 (22:25 +0000)]
Merge "More fixes for Connection and RemoteConnection"

10 years agoMore fixes for Connection and RemoteConnection
Sailesh Nepal [Mon, 30 Jun 2014 22:15:23 +0000 (15:15 -0700)]
More fixes for Connection and RemoteConnection

Various clean ups and fixes:
  - allow remote connection to have audio set
  - allow remote connection to have abort
  - move onPostDialWait from ConnectionService to Connection
  - hide APIs we don't need

Change-Id: Ib2d0b40f2e9e7a6b5fbf5d6db48b509b7db3c906

10 years agoam 62395c93: am 5212ee08: Merge "docs: Add Javadocs for GMS Longhorn." into klp-modul...
Quddus Chong [Mon, 30 Jun 2014 21:57:24 +0000 (21:57 +0000)]
am 62395c93: am 5212ee08: Merge "docs: Add Javadocs for GMS Longhorn." into klp-modular-dev

* commit '62395c9379449a44f2df7754ed2fe3a945e38685':
  docs: Add Javadocs for GMS Longhorn.

10 years agoam 69fc782a: am 85a25e02: Merge "docs: Added "What\'s New" for GMS Longhorn (Google...
Quddus Chong [Mon, 30 Jun 2014 21:57:19 +0000 (21:57 +0000)]
am 69fc782a: am 85a25e02: Merge "docs: Added "What\'s New" for GMS Longhorn (Google Play Services 5.0)" into klp-modular-dev

* commit '69fc782a8bdb09da25c5052381d15f3ff3b0cb3a':
  docs: Added "What's New" for GMS Longhorn (Google Play Services 5.0)

10 years agoFixing crash in phone app due to missing null checks pertaining to
Tyler Gunn [Mon, 30 Jun 2014 21:22:57 +0000 (14:22 -0700)]
Fixing crash in phone app due to missing null checks pertaining to
CallVideoProvider.

Change-Id: Ifd5a558a2b36e0cb656c9a57f64ae0744425a3ef

10 years agoMerge "Implement line breaking using ICU break iterator"
Anish Athalye [Mon, 30 Jun 2014 22:16:46 +0000 (22:16 +0000)]
Merge "Implement line breaking using ICU break iterator"

10 years agoImplement line breaking using ICU break iterator
Anish Athalye [Tue, 24 Jun 2014 21:39:43 +0000 (14:39 -0700)]
Implement line breaking using ICU break iterator

Change-Id: I4ad98757aa2eab5dbc2ae44c0391e900ef20c4d0

10 years agoFixing another case where we weren't properly starting home when Recents is finished...
Winson Chung [Mon, 30 Jun 2014 20:12:54 +0000 (13:12 -0700)]
Fixing another case where we weren't properly starting home when Recents is finished due to the screen powering off.

- Reordering broadcast register/unregister to stop listening to the service when Recents is stopped

10 years agoMerge "Preparing the new GL depth test."
ztenghui [Mon, 30 Jun 2014 22:14:39 +0000 (22:14 +0000)]
Merge "Preparing the new GL depth test."