OSDN Git Service

android-x86/frameworks-base.git
8 years agoMerge "Add lockdownEnabled parameter to always-on VPN API" into nyc-dev
Robin Lee [Wed, 4 May 2016 18:38:28 +0000 (18:38 +0000)]
Merge "Add lockdownEnabled parameter to always-on VPN API" into nyc-dev

8 years agoMerge changes I31d5260d,Ied92f558 into nyc-dev
Robin Lee [Wed, 4 May 2016 18:35:17 +0000 (18:35 +0000)]
Merge changes I31d5260d,Ied92f558 into nyc-dev

* changes:
  Start VPN as early as possible during startup
  Split network agent created state from connected state

8 years agoMerge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs am: 60068...
Andrew Solovay [Wed, 4 May 2016 18:30:17 +0000 (18:30 +0000)]
Merge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs am: 6006856b24 am: 5c197a1513
am: 99dfd4c92f

* commit '99dfd4c92f13f9fe024fe995261bcfdd8bd61295':
  docs: Renaming /go/ top-level directory to /topic/

Change-Id: Ie817cd75f56e9bc8d5080711d0cb7de6887541aa

8 years agoMerge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs am: 60068...
Andrew Solovay [Wed, 4 May 2016 18:23:07 +0000 (18:23 +0000)]
Merge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs am: 6006856b24
am: 5c197a1513

* commit '5c197a1513a1a3b181977c6425a0f542d770a1bc':
  docs: Renaming /go/ top-level directory to /topic/

Change-Id: I1a49367d42f2d16e0b3c9c9f41bb844a00052490

8 years agoMerge "Update BlockedNumberContract documentation." into nyc-dev
Abhijith Shastry [Wed, 4 May 2016 18:14:36 +0000 (18:14 +0000)]
Merge "Update BlockedNumberContract documentation." into nyc-dev

8 years agoMerge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs
Andrew Solovay [Wed, 4 May 2016 18:14:32 +0000 (18:14 +0000)]
Merge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs
am: 6006856b24

* commit '6006856b24335473e71a58d3bf45d49c57ea6055':
  docs: Renaming /go/ top-level directory to /topic/

Change-Id: I6401fd1a31ec8c064387b9a7e49aaf52a76b80f1

8 years agoMerge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs
Andrew Solovay [Wed, 4 May 2016 18:07:08 +0000 (18:07 +0000)]
Merge "docs: Renaming /go/ top-level directory to /topic/" into mnc-mr-docs

8 years agoMerge "Voice Messaging Intent API." into nyc-dev
Renat Aksitov [Wed, 4 May 2016 18:02:45 +0000 (18:02 +0000)]
Merge "Voice Messaging Intent API." into nyc-dev

8 years agoMerge "Revert "TIF: add signal detection feature for HW inputs"" into nyc-dev
Dongwon Kang [Wed, 4 May 2016 17:33:52 +0000 (17:33 +0000)]
Merge "Revert "TIF: add signal detection feature for HW inputs"" into nyc-dev

8 years agoMerge "Add a null check for the thumbnail image for transition" into nyc-dev
Sid Soundararajan [Wed, 4 May 2016 17:14:18 +0000 (17:14 +0000)]
Merge "Add a null check for the thumbnail image for transition" into nyc-dev

8 years agoMerge "Uncheck unselected radio buttons." into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 17:09:50 +0000 (17:09 +0000)]
Merge "Uncheck unselected radio buttons." into nyc-dev

8 years agoMerge "Fix ClipData JavaDoc and behavior that contradicts JavaDoc" into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 17:07:12 +0000 (17:07 +0000)]
Merge "Fix ClipData JavaDoc and behavior that contradicts JavaDoc" into nyc-dev

8 years agoMerge "Fix race condition in MetricsLoggerService" into nyc-dev
Pavel Zhamaitsiak [Wed, 4 May 2016 17:02:16 +0000 (17:02 +0000)]
Merge "Fix race condition in MetricsLoggerService" into nyc-dev

8 years agoMerge "Disable share when dirs selected." into nyc-dev
Steve McKay [Wed, 4 May 2016 16:46:18 +0000 (16:46 +0000)]
Merge "Disable share when dirs selected." into nyc-dev

8 years agoStart VPN as early as possible during startup
Robin Lee [Wed, 4 May 2016 15:38:06 +0000 (16:38 +0100)]
Start VPN as early as possible during startup

- Switch from USER_STARTING to USER_STARTED which is the foreground
  version of the broadcast

- Set the new VPN network as CONNECTING initially to avoid spamming
  apps with useless notifications ahead of the network being fully
  available

Bug: 26694104
Fix: 28335277
Change-Id: I31d5260dda62ff440c31c44eb0aa5c891e2717e5

8 years agoMerge "Collect mime type data correctly for all URIs added to ClipData" into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 16:41:07 +0000 (16:41 +0000)]
Merge "Collect mime type data correctly for all URIs added to ClipData" into nyc-dev

8 years agoSplit network agent created state from connected state
Robin Lee [Sun, 1 May 2016 22:00:00 +0000 (23:00 +0100)]
Split network agent created state from connected state

Network creation setup sometimes involves extra steps after actually
calling into netd to create the underlying network, rules & routes &
to begin allowing sockets bound to it.

For example, VPN networks can set a UID whitelist or blacklist. This
should happen:

  - AFTER there is a netID & network created in netd as
    network-specific rules will need to be tied to / point at it. Those
    rules are tied to the lifecycle of netd's network which is tracked
    by `NetworkAgentInfo.created` on the frameworks side.

  - BEFORE the CONNECTED broadcast and network callbacks have been sent
    out so that we don't create a race condition between clients that
    want to use the network and the server actually having the network
    ready

The race condition existed prior to this change and required any client
making use of network callbacks to sleep for a short amount of time after
receiving to actually be able to use the network.

Among other things, that race condition is now fixed.

Bug: 26694104
Change-Id: Ied92f5588a98c3e97f456bc98b676bf201ab5472

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Wed, 4 May 2016 13:45:10 +0000 (13:45 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Wed, 4 May 2016 13:45:07 +0000 (13:45 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Wed, 4 May 2016 13:42:29 +0000 (13:42 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Wed, 4 May 2016 13:42:15 +0000 (13:42 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoUncheck unselected radio buttons.
Julia Reynolds [Fri, 29 Apr 2016 18:32:46 +0000 (14:32 -0400)]
Uncheck unselected radio buttons.

Fixes: 28518097
Change-Id: I22cce7837802a97f15af4170f8991db1685ee121

8 years agoMerge "Don't display 1st-time dialog when disabling Data Saver." into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 13:24:11 +0000 (13:24 +0000)]
Merge "Don't display 1st-time dialog when disabling Data Saver." into nyc-dev

8 years agoMerge "[WebView] Update ServiceWorker related documentation." into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 12:37:20 +0000 (12:37 +0000)]
Merge "[WebView] Update ServiceWorker related documentation." into nyc-dev

8 years agoMerge "Do not show exception stack trace when no child profile key" into nyc-dev
Ricky Wai [Wed, 4 May 2016 10:47:53 +0000 (10:47 +0000)]
Merge "Do not show exception stack trace when no child profile key" into nyc-dev

8 years agoMerge "Make notification reply can response to work challenge" into nyc-dev
Ricky Wai [Wed, 4 May 2016 10:11:20 +0000 (10:11 +0000)]
Merge "Make notification reply can response to work challenge" into nyc-dev

8 years agoDo not show exception stack trace when no child profile key
Ricky Wai [Tue, 3 May 2016 13:50:03 +0000 (14:50 +0100)]
Do not show exception stack trace when no child profile key

Bug: 28396912
Change-Id: I48e3f3223d04a0ba3dd2d975901b0504ce0dd25f

8 years agoNew settings key and policy transparency for managed profile settings
Tony Mak [Tue, 3 May 2016 17:58:28 +0000 (18:58 +0100)]
New settings key and policy transparency for managed profile settings

Bug: 28281560
Change-Id: I38d0c202088df410a28e78800de4e74377ec3216

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Wed, 4 May 2016 07:06:46 +0000 (00:06 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: Ic96e78c740e77efbccaee8718e981d6fb9a1da58

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Wed, 4 May 2016 06:29:06 +0000 (23:29 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: Ia8bad7599bc6c36fd2d28e3e1b223ab64c6981ba

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Wed, 4 May 2016 06:15:27 +0000 (23:15 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: If0b1247f6f525c6db0dddb5fa591d7c46bb2fbf0

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Wed, 4 May 2016 06:07:15 +0000 (23:07 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: I0bd21ace6a871d1e74ce5a670acf2f0ed30c12fe

8 years agoMerge "Check permission for FLAG_WILL_BE_FOREGROUND." into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 03:39:27 +0000 (03:39 +0000)]
Merge "Check permission for FLAG_WILL_BE_FOREGROUND." into nyc-dev

8 years agoMerge "Avoid restart when inserting/ejecting adopted." into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 02:02:38 +0000 (02:02 +0000)]
Merge "Avoid restart when inserting/ejecting adopted." into nyc-dev

8 years agoredirect removed file from cl: https://critique.corp.google.com/#review/121079434...
smain@google.com [Wed, 4 May 2016 01:27:39 +0000 (01:27 +0000)]
redirect removed file from cl: https://critique.corp.google.com/#review/121079434 am: 3548f40a28 am: e77eefbe29
am: ad6af19b1b

* commit 'ad6af19b1b99a9cd5b8f2db6010532f19d38aae2':
  redirect removed file from cl: https://critique.corp.google.com/#review/121079434

Change-Id: Id5ce56f0686ae76278017872ed3ea4b7a7632734

8 years agoredirect removed file from cl: https://critique.corp.google.com/#review/121079434...
smain@google.com [Wed, 4 May 2016 01:25:01 +0000 (01:25 +0000)]
redirect removed file from cl: https://critique.corp.google.com/#review/121079434 am: 3548f40a28
am: e77eefbe29

* commit 'e77eefbe29908d6500c56fc3090be94e097bbb1c':
  redirect removed file from cl: https://critique.corp.google.com/#review/121079434

Change-Id: If29e3ccf695010de01fa50f1a09733b663c9b506

8 years agoredirect removed file from cl: https://critique.corp.google.com/#review/121079434
smain@google.com [Wed, 4 May 2016 01:22:25 +0000 (01:22 +0000)]
redirect removed file from cl: https://critique.corp.google.com/#review/121079434
am: 3548f40a28

* commit '3548f40a28722750dc581414f329b6741502fb6a':
  redirect removed file from cl: https://critique.corp.google.com/#review/121079434

Change-Id: I232156f7f32292eea6bbbf995921234048d1ca91

8 years agoredirect removed file from cl:
smain@google.com [Wed, 4 May 2016 01:14:06 +0000 (18:14 -0700)]
redirect removed file from cl:
https://critique.corp.google.com/#review/121079434

Change-Id: I5629c3142167e79875d930a272977c4f527203e6

8 years agoMerge "Use LUT for computing final shadow alpha" into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 01:03:40 +0000 (01:03 +0000)]
Merge "Use LUT for computing final shadow alpha" into nyc-dev

8 years agoMerge "Update verbosity of hardware providers." into nyc-dev
Daniel Estrada Alva [Wed, 4 May 2016 00:38:05 +0000 (00:38 +0000)]
Merge "Update verbosity of hardware providers." into nyc-dev

8 years agoMerge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558 am:...
Jaewan Kim [Wed, 4 May 2016 00:34:33 +0000 (00:34 +0000)]
Merge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558 am: d3eacb56b6 am: 7179b0b52f
am: 3c523f65a8

* commit '3c523f65a87f8fd0f30ea41ac205687111b218ea':
  Fix documentation for drawable resource

Change-Id: Ia726bfeb247b212fadfb07f6e241295d07f16256

8 years agoMerge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558 am:...
Jaewan Kim [Wed, 4 May 2016 00:29:25 +0000 (00:29 +0000)]
Merge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558 am: d3eacb56b6
am: 7179b0b52f

* commit '7179b0b52f64a5838cc367fea9407ec120b4fd2e':
  Fix documentation for drawable resource

Change-Id: Ic66e603345daf1c915939330a3f4cac52787610e

8 years agoMerge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558
Jaewan Kim [Wed, 4 May 2016 00:25:40 +0000 (00:25 +0000)]
Merge "Fix documentation for drawable resource" into mnc-docs am: 2d542c5558
am: d3eacb56b6

* commit 'd3eacb56b6918804ef6c8542fe264656c03f1708':
  Fix documentation for drawable resource

Change-Id: I5d8ca19f0dc24fe054fef9ae339cc9283efdd5d8

8 years agoMerge "Show drag handles after finishing batch edit if needed." into nyc-dev
Keisuke Kuroyanagi [Wed, 4 May 2016 00:22:56 +0000 (00:22 +0000)]
Merge "Show drag handles after finishing batch edit if needed." into nyc-dev

8 years agoUpdate BlockedNumberContract documentation.
Abhijith Shastry [Wed, 4 May 2016 00:18:02 +0000 (17:18 -0700)]
Update BlockedNumberContract documentation.

For secondary users, a SecurityException is thrown instead of UnsupportedOperationException.

BUG: 28294786
Change-Id: I6402b856eeb02c4c1d940606ae7e69f3ae9cb45d

8 years agoMerge "Fix documentation for drawable resource" into mnc-docs
Jaewan Kim [Wed, 4 May 2016 00:16:44 +0000 (00:16 +0000)]
Merge "Fix documentation for drawable resource" into mnc-docs
am: 2d542c5558

* commit '2d542c555851d896ceecb0e7a51819fef4f2cfbd':
  Fix documentation for drawable resource

Change-Id: Idc27783a9b237dbba23f548ecdde89df32acec8b

8 years agoMerge "Clear active requests on switching voice interactor" into nyc-dev
TreeHugger Robot [Wed, 4 May 2016 00:13:28 +0000 (00:13 +0000)]
Merge "Clear active requests on switching voice interactor" into nyc-dev

8 years agoMerge "update doc with permissions needed for voice call capture." into nyc-dev
Eric Laurent [Wed, 4 May 2016 00:12:14 +0000 (00:12 +0000)]
Merge "update doc with permissions needed for voice call capture." into nyc-dev

8 years agoMerge "Fix documentation for drawable resource" into mnc-docs
Jaewan Kim [Wed, 4 May 2016 00:10:37 +0000 (00:10 +0000)]
Merge "Fix documentation for drawable resource" into mnc-docs

8 years agoMerge "Fix wrong import" into nyc-dev
TreeHugger Robot [Tue, 3 May 2016 23:59:55 +0000 (23:59 +0000)]
Merge "Fix wrong import" into nyc-dev

8 years agoRevert "TIF: add signal detection feature for HW inputs"
Dongwon Kang [Tue, 3 May 2016 23:52:55 +0000 (16:52 -0700)]
Revert "TIF: add signal detection feature for HW inputs"

This reverts commit 102d0b7b6970523ca7040e30d4e4fd1a349a01cc.

Change-Id: I50a66d7bd1baaea134ddd6638c3cfe65860e681d

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Tue, 3 May 2016 23:49:15 +0000 (23:49 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agoMerge "Import translations. DO NOT MERGE" into nyc-dev
Baligh Uddin [Tue, 3 May 2016 23:49:12 +0000 (23:49 +0000)]
Merge "Import translations. DO NOT MERGE" into nyc-dev

8 years agodocs: Renaming /go/ top-level directory to /topic/
Andrew Solovay [Tue, 3 May 2016 18:41:07 +0000 (11:41 -0700)]
docs: Renaming /go/ top-level directory to /topic/

Per discussion with JF and DD, the new holding pen for not-quite-
top-level topics will be a "/topic/" directory, not "/go/". (Currently
the only thing living there is the new "libraries" section.)

Updating redirects and TOCs accordingly. See first comment for
doc stage location.

bug: 28558659

Change-Id: I09201a8334cac70d76559a106a74d5a29fe82128

8 years agoFix ClipData JavaDoc and behavior that contradicts JavaDoc
Vladislav Kaznacheev [Tue, 3 May 2016 22:02:33 +0000 (15:02 -0700)]
Fix ClipData JavaDoc and behavior that contradicts JavaDoc

1. Expand JavaDoc for ClipData.addItem to clarify how MIME types are affected.
2. Add "text/uri-list" to MIME type list only for non-content URIs (as JavaDoc explicitly says).

Bug: 28564003
Change-Id: I074daf34310323725690a9ba2c7dff0542ed6349

8 years agoMerge "Remove extraneous Training heading that doesn\'t appear in other training...
Android Build Merger (Role) [Tue, 3 May 2016 23:46:14 +0000 (23:46 +0000)]
Merge "Remove extraneous Training heading that doesn\'t appear in other training indexes. am: e4f02996b5 am: a4a30aaa6c am: e105e8face" into nyc-dev

8 years agoRemove extraneous Training heading that doesn\'t appear in other training indexes...
Dirk Dougherty [Tue, 3 May 2016 23:45:29 +0000 (23:45 +0000)]
Remove extraneous Training heading that doesn\'t appear in other training indexes. am: e4f02996b5 am: a4a30aaa6c
am: e105e8face

* commit 'e105e8faced5b9528421efc48e4ec26e4f487aae':
  Remove extraneous Training heading that doesn't appear in other training indexes.

Change-Id: I08b98bc4954535cffc0a4307d540f9f8541e5c56

8 years agoCheck permission for FLAG_WILL_BE_FOREGROUND.
Jeff Sharkey [Tue, 3 May 2016 23:44:23 +0000 (17:44 -0600)]
Check permission for FLAG_WILL_BE_FOREGROUND.

This flag is only designed to be used by platform internals, such as
DownloadManager, so require that callers hold a nice strong
permission.

Bug: 26571724
Change-Id: Ie5ec55399e2e3a64b2837ef2c0a7a8a79bd1e49f

8 years agoRemove extraneous Training heading that doesn\'t appear in other training indexes...
Dirk Dougherty [Tue, 3 May 2016 23:42:48 +0000 (23:42 +0000)]
Remove extraneous Training heading that doesn\'t appear in other training indexes. am: e4f02996b5
am: a4a30aaa6c

* commit 'a4a30aaa6cf49a96c77cd2b74c6b79fdeced0cc4':
  Remove extraneous Training heading that doesn't appear in other training indexes.

Change-Id: I6f15388dc3567edaf89a3968e7deb4cdcffd9b50

8 years agoMerge "Work on issue #28200735: AcitvityManagerService lock held for..." into nyc-dev
Dianne Hackborn [Tue, 3 May 2016 23:41:45 +0000 (23:41 +0000)]
Merge "Work on issue #28200735: AcitvityManagerService lock held for..." into nyc-dev

8 years agoAvoid restart when inserting/ejecting adopted.
Jeff Sharkey [Tue, 3 May 2016 23:40:02 +0000 (17:40 -0600)]
Avoid restart when inserting/ejecting adopted.

When rapidly inserting/ejecting an adopted storage device, we might
still be trying to prepare the storage device.  Catch the exception
to avoid a runtime restart, and keep rolling forward, since we'll
probably be handling the ejected event in a few moments to clean up
any packages.

Bug: 28467146
Change-Id: Ib923663ae6d63259c1b5792b68dfe760612ab838

8 years agoRemove extraneous Training heading that doesn\'t appear in other training indexes.
Dirk Dougherty [Tue, 3 May 2016 23:40:18 +0000 (23:40 +0000)]
Remove extraneous Training heading that doesn\'t appear in other training indexes.
am: e4f02996b5

* commit 'e4f02996b50f1b5635f760e8e3240f33365ac3ef':
  Remove extraneous Training heading that doesn't appear in other training indexes.

Change-Id: If03ebec3f7c7404f80458b5dc84cd3fa71830fce

8 years agoMerge "Fix a transparent flicker due to wrong crop" into nyc-dev
Chong Zhang [Tue, 3 May 2016 23:37:31 +0000 (23:37 +0000)]
Merge "Fix a transparent flicker due to wrong crop" into nyc-dev

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Tue, 3 May 2016 23:36:29 +0000 (16:36 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: Ie10dd0e18292f94995761a098df8c42ee69a0e25

8 years agoImport translations. DO NOT MERGE
Baligh Uddin [Tue, 3 May 2016 23:30:12 +0000 (16:30 -0700)]
Import translations. DO NOT MERGE

Auto-generated-cl: translation import

Bug: 28463229
Change-Id: I15a9ed4cab9b212c20a05b7fddcb00d74c3172bc

8 years agoRemove extraneous Training heading that doesn't appear in other training indexes.
Dirk Dougherty [Tue, 3 May 2016 23:11:00 +0000 (16:11 -0700)]
Remove extraneous Training heading that doesn't appear in other training indexes.

Change-Id: I7dfb3cf998e717969747142d1d53b85f85236938

8 years agoDon't display 1st-time dialog when disabling Data Saver.
Felipe Leme [Tue, 3 May 2016 22:58:35 +0000 (15:58 -0700)]
Don't display 1st-time dialog when disabling Data Saver.

BUG: 28098106
Change-Id: Iec6deb45a881fab2896463a59cbc7a96a9e5c811

8 years agoDisable share when dirs selected.
Steve McKay [Tue, 3 May 2016 18:25:52 +0000 (11:25 -0700)]
Disable share when dirs selected.

Pass a SelectionDetails object instead of a pile of booleans into updateActionMenu.
Normalized "is feature X enabled" naming.
Normalized menu fiddling in FilesTuner.

Bug: 28467604
Change-Id: Ic88fab78adf02f794ef0c0550443a3c075e7bab6

8 years agoCollect mime type data correctly for all URIs added to ClipData
Vladislav Kaznacheev [Tue, 3 May 2016 22:37:21 +0000 (15:37 -0700)]
Collect mime type data correctly for all URIs added to ClipData

Bug: 28452937
Change-Id: I883ae2d22e09000137fa484ef66d5070855cd0ed

8 years agoMerge "Fix issue #28477006: Add small event log to job scheduler" into nyc-dev
Dianne Hackborn [Tue, 3 May 2016 22:33:52 +0000 (22:33 +0000)]
Merge "Fix issue #28477006: Add small event log to job scheduler" into nyc-dev

8 years agoUpdate verbosity of hardware providers.
destradaa [Tue, 3 May 2016 22:33:43 +0000 (15:33 -0700)]
Update verbosity of hardware providers.

Uses a debug log for logging of messages related to hardware providers
that are not mandatory in the device.

Bug: 28530304
Change-Id: Ief1f193f934e7ebe7077366aafaa913b216e3481

8 years agoMerge "Apply IME adjust to newly added window" into nyc-dev
Chong Zhang [Tue, 3 May 2016 22:28:39 +0000 (22:28 +0000)]
Merge "Apply IME adjust to newly added window" into nyc-dev

8 years agoFix a transparent flicker due to wrong crop
Chong Zhang [Fri, 29 Apr 2016 22:58:45 +0000 (15:58 -0700)]
Fix a transparent flicker due to wrong crop

When transfering an animation, copy over app animator transformation
in addition to the animation object itself.

bug: 28399102

Change-Id: I8694a76993476b19ec61d74680d6fc51326a18bf

8 years agoFix wrong import
Jorim Jaggi [Tue, 3 May 2016 22:10:03 +0000 (15:10 -0700)]
Fix wrong import

Bug: 28557404
Change-Id: I785bf29d094b26037e5ca0798af5df8a663b85cf

8 years agoAdd a null check for the thumbnail image for transition
Sid Soundararajan [Tue, 26 Apr 2016 18:19:17 +0000 (11:19 -0700)]
Add a null check for the thumbnail image for transition

This is needed since apps will send a null thumbnail for when
some content they do not want screenshotted is playing.

BUG: 28343440
Change-Id: Ie1edc78bf16c8ea014a982a115faf9395c9ccab3

8 years agoClear active requests on switching voice interactor
Amith Yamasani [Tue, 3 May 2016 22:07:03 +0000 (15:07 -0700)]
Clear active requests on switching voice interactor

When voice interactor goes null or changes, cancel all existing
active requests and clear them so that they can be re-submitted.

Bug: 28487567
Change-Id: Ibcf024efcc81ff18ef3babfa9a169292207bc816

8 years agoMerge changes If7b8ed3f,I309c3825,Iafd06419,I59f73caf into nyc-dev
Winson Chung [Tue, 3 May 2016 21:57:01 +0000 (21:57 +0000)]
Merge changes If7b8ed3f,I309c3825,Iafd06419,I59f73caf into nyc-dev

* changes:
  Fixes several animation issues related to a dismissing task.
  Pipe the dismiss button logic through the touch handler.
  Skip scroll-to animation when undocking and there are no tasks.
  Fixing issue with docking being disallowed for secondary user.

8 years agoApply IME adjust to newly added window
Chong Zhang [Tue, 3 May 2016 19:47:34 +0000 (12:47 -0700)]
Apply IME adjust to newly added window

bug: 28390108
Change-Id: I72132d68cb41056fb69f2fe38fa13f2b3c9ce3d6

8 years agoUse LUT for computing final shadow alpha
Chris Craik [Thu, 28 Apr 2016 23:59:42 +0000 (16:59 -0700)]
Use LUT for computing final shadow alpha

bug:27415250

Significantly reduces shadow fragment shader computation.

Change-Id: Ie9b3c712700754b3734d0ae9cda8751c298fc59e

8 years agoMerge "Revert "Request re-layout after setText if layout width is 0"" into nyc-dev
Siyamed Sinir [Tue, 3 May 2016 21:22:16 +0000 (21:22 +0000)]
Merge "Revert "Request re-layout after setText if layout width is 0"" into nyc-dev

8 years agoMerge "Add LightingFilter behavior test" into nyc-dev
Chris Craik [Tue, 3 May 2016 21:12:02 +0000 (21:12 +0000)]
Merge "Add LightingFilter behavior test" into nyc-dev

8 years agoMerge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:2844753...
smain@google.com [Tue, 3 May 2016 20:58:27 +0000 (20:58 +0000)]
Merge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530" into mnc-mr-docs am: cf4fe3c46d am: 395e68657b
am: 9a26ce79ef

* commit '9a26ce79ef468891ffde89ac8984d017e7de0652':
  add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530

Change-Id: Ib0fa160a189ad455f2cbb49d7e785f9310817a1c

8 years agoMerge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:2844753...
Scott Main [Tue, 3 May 2016 20:55:59 +0000 (20:55 +0000)]
Merge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530" into mnc-mr-docs am: cf4fe3c46d
am: 395e68657b

* commit '395e68657b19e813c1f85ce6b0bd985fb99cbda6':
  add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530

Change-Id: Ia1619167356358262f96655d6dad1a8cda822bde

8 years agoMerge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:2844753...
smain@google.com [Tue, 3 May 2016 20:53:35 +0000 (20:53 +0000)]
Merge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530" into mnc-mr-docs
am: cf4fe3c46d

* commit 'cf4fe3c46d163a6f26b5a7dcdcaf56352e4b0bcd':
  add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530

Change-Id: I483ae2e094410a3dc72de519bfb5c723191eb7f5

8 years agoMerge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:2844753...
Scott Main [Tue, 3 May 2016 20:47:53 +0000 (20:47 +0000)]
Merge "add new redirects for migration of sdk/ and tools/ docs to studio/ bug:28447530" into mnc-mr-docs

8 years agoMerge "Update dumpsys logging for VrManagerService." into nyc-dev
Ruben Brunk [Tue, 3 May 2016 20:42:36 +0000 (20:42 +0000)]
Merge "Update dumpsys logging for VrManagerService." into nyc-dev

8 years agoRevert "Request re-layout after setText if layout width is 0"
Siyamed Sinir [Tue, 3 May 2016 20:27:21 +0000 (20:27 +0000)]
Revert "Request re-layout after setText if layout width is 0"

This reverts commit 375366cb2d6b8be3d81e59ea0ce27332c3eada66.

Bug: 28523980
Change-Id: Ib4dd00eabaf7b5630b18373cc1d7bec61c0e155d

8 years agoMerge "Implement alternative ViewGroup.getChildVisibleRect." into nyc-dev
Abodunrinwa Toki [Tue, 3 May 2016 20:13:24 +0000 (20:13 +0000)]
Merge "Implement alternative ViewGroup.getChildVisibleRect." into nyc-dev

8 years agoMerge "copy auto-group decisions to updates" into nyc-dev
TreeHugger Robot [Tue, 3 May 2016 20:08:01 +0000 (20:08 +0000)]
Merge "copy auto-group decisions to updates" into nyc-dev

8 years agoMerge "Allow apps to load libraries from under /data" into nyc-dev
Dimitry Ivanov [Tue, 3 May 2016 20:00:37 +0000 (20:00 +0000)]
Merge "Allow apps to load libraries from under /data" into nyc-dev

8 years agoMerge "List the CONNECTION_STATE_CHANGED broadcast for MAP as protected" into nyc-dev
TreeHugger Robot [Tue, 3 May 2016 19:51:14 +0000 (19:51 +0000)]
Merge "List the CONNECTION_STATE_CHANGED broadcast for MAP as protected" into nyc-dev

8 years agoMerge "BatteryStats: Fix units on battery charge counter" into nyc-dev
Adam Lesinski [Tue, 3 May 2016 19:47:33 +0000 (19:47 +0000)]
Merge "BatteryStats: Fix units on battery charge counter" into nyc-dev

8 years agoupdate doc with permissions needed for voice call capture.
Eric Laurent [Tue, 3 May 2016 19:43:14 +0000 (12:43 -0700)]
update doc with permissions needed for voice call capture.

Update documentation for VOICE_UPLINK, VOICE_DOWNKINK and
VOICE_CALL MediaRecorder audio sources to indicate those
sources are protected by the signature|privileged permission
CAPTURE_AUDIO_OUTPUT

This was missing in M SDK doc.

Bug: 28081587.
Change-Id: I24f6d9978069115a0f2c41e48038b935e4395124

8 years agoMerge "Don't pre-opt shims" into nyc-dev
Todd Kennedy [Tue, 3 May 2016 19:35:52 +0000 (19:35 +0000)]
Merge "Don't pre-opt shims" into nyc-dev

8 years agoMerge "Fix typos in ClipData JavaDoc" into nyc-dev
TreeHugger Robot [Tue, 3 May 2016 19:28:30 +0000 (19:28 +0000)]
Merge "Fix typos in ClipData JavaDoc" into nyc-dev

8 years agoMerge "stop leaking SkPDFDocument" into nyc-dev
Hal Canary [Tue, 3 May 2016 19:27:56 +0000 (19:27 +0000)]
Merge "stop leaking SkPDFDocument" into nyc-dev

8 years agoMerge "Announce access point changes." into nyc-dev
Julia Reynolds [Tue, 3 May 2016 18:58:11 +0000 (18:58 +0000)]
Merge "Announce access point changes." into nyc-dev

8 years agoAnnounce access point changes.
Julia Reynolds [Tue, 3 May 2016 18:40:44 +0000 (14:40 -0400)]
Announce access point changes.

Bug: 24202851
Change-Id: I0de0d9bf89191750694a7ba2fac4a95babe62aeb

8 years agoMerge "Change low power stats format to make it easier for parsing" into nyc-dev
Badhri Jagan Sridharan [Tue, 3 May 2016 18:48:55 +0000 (18:48 +0000)]
Merge "Change low power stats format to make it easier for parsing" into nyc-dev

8 years agoFix issue #28477006: Add small event log to job scheduler
Dianne Hackborn [Sat, 30 Apr 2016 01:18:08 +0000 (18:18 -0700)]
Fix issue #28477006: Add small event log to job scheduler

Added.  Also fixed dumpsys output when filtering, to apply the
filter to (almost) all of the output.

Change-Id: Iafb446599ad8fddbe8a766784deff618a6cfdbb7