OSDN Git Service

android-x86/frameworks-base.git
7 years agoMerge "Companion device chooser UI enchancements"
Eugene Susla [Wed, 8 Feb 2017 18:21:57 +0000 (18:21 +0000)]
Merge "Companion device chooser UI enchancements"

7 years agoMerge "Don't print shader source"
TreeHugger Robot [Wed, 8 Feb 2017 18:00:21 +0000 (18:00 +0000)]
Merge "Don't print shader source"

7 years agoMerge "moved shared classes from settings to settingslib"
Salvador Martinez [Wed, 8 Feb 2017 17:57:08 +0000 (17:57 +0000)]
Merge "moved shared classes from settings to settingslib"

7 years agoMerge "SysUI: Add method for plugins to keep status bar full screen"
TreeHugger Robot [Wed, 8 Feb 2017 17:53:48 +0000 (17:53 +0000)]
Merge "SysUI: Add method for plugins to keep status bar full screen"

7 years agoMerge "Fix deadlock in render thread when Bitmap.prepareToDraw is invoked"
TreeHugger Robot [Wed, 8 Feb 2017 17:39:31 +0000 (17:39 +0000)]
Merge "Fix deadlock in render thread when Bitmap.prepareToDraw is invoked"

7 years agoMerge "Fix a bug where the last used times could be wrong."
Daniel Nishi [Wed, 8 Feb 2017 17:32:30 +0000 (17:32 +0000)]
Merge "Fix a bug where the last used times could be wrong."

7 years agoMerge "Add new MetricsEvent for carrier demo mode dialog"
Christine Franks [Wed, 8 Feb 2017 17:25:12 +0000 (17:25 +0000)]
Merge "Add new MetricsEvent for carrier demo mode dialog"

7 years agoMerge changes Ia7670aa6,I602b421b
TreeHugger Robot [Wed, 8 Feb 2017 16:54:57 +0000 (16:54 +0000)]
Merge changes Ia7670aa6,I602b421b

* changes:
  Get rid of VirtualViewDelegate.
  Set autofill id on virtual structures.

7 years agoMerge "AssetManager2: Add GetResourceId"
TreeHugger Robot [Wed, 8 Feb 2017 16:50:27 +0000 (16:50 +0000)]
Merge "AssetManager2: Add GetResourceId"

7 years agoMerge changes If970d851,I5bd11574
Roshan Pius [Wed, 8 Feb 2017 16:40:35 +0000 (16:40 +0000)]
Merge changes If970d851,I5bd11574

* changes:
  WifiManager: API upates for O
  WifiConfiguration: Remove priority field

7 years agoMerge "Provide old behavior for View#hasFocusable to old apps"
Adam Powell [Wed, 8 Feb 2017 16:21:01 +0000 (16:21 +0000)]
Merge "Provide old behavior for View#hasFocusable to old apps"

7 years agoMerge "Small tweaks in LockSettingsService"
Rubin Xu [Wed, 8 Feb 2017 16:04:22 +0000 (16:04 +0000)]
Merge "Small tweaks in LockSettingsService"

7 years agoMerge "Fix typo in dexopt.secondary system property"
Calin Juravle [Wed, 8 Feb 2017 16:03:03 +0000 (16:03 +0000)]
Merge "Fix typo in dexopt.secondary system property"

7 years agoDon't print shader source
Romain Guy [Wed, 8 Feb 2017 15:45:11 +0000 (07:45 -0800)]
Don't print shader source

Bug: 32984164
Test: compile & run
Change-Id: If632e49b773ca44d4e09e3acb5979f4df15a8d77

7 years agoMerge "Allow EAP-SIM authentication methods under PEAP"
TreeHugger Robot [Wed, 8 Feb 2017 15:35:24 +0000 (15:35 +0000)]
Merge "Allow EAP-SIM authentication methods under PEAP"

7 years agoMerge "AutoSize TextView (part 8) - APIs for predefined sizes"
TreeHugger Robot [Wed, 8 Feb 2017 14:57:39 +0000 (14:57 +0000)]
Merge "AutoSize TextView (part 8) - APIs for predefined sizes"

7 years agoMerge "Replace com.android.internal.util.Predicate with java.util.function.Predicate"
Paul Duffin [Wed, 8 Feb 2017 14:49:26 +0000 (14:49 +0000)]
Merge "Replace com.android.internal.util.Predicate with java.util.function.Predicate"

7 years agoMerge "Add ShadowShaderAnimation benchmark"
Chris Craik [Wed, 8 Feb 2017 14:23:29 +0000 (14:23 +0000)]
Merge "Add ShadowShaderAnimation benchmark"

7 years agoMerge "AAPT: Fix --feature-of to allow non-public symbol visibility"
Adam Lesinski [Wed, 8 Feb 2017 14:07:19 +0000 (14:07 +0000)]
Merge "AAPT: Fix --feature-of to allow non-public symbol visibility"

7 years agoAssetManager2: Add GetResourceId
Adam Lesinski [Tue, 17 Jan 2017 03:11:19 +0000 (19:11 -0800)]
AssetManager2: Add GetResourceId

Add ability to lookup a resource by name.

Test: make libandroidfw_tests
Change-Id: I262ba5ce4c9892458226fbdb44cf21f9877fb92d

7 years agoMerge changes from topics 'proto', 'lights'
Julia Reynolds [Wed, 8 Feb 2017 13:34:19 +0000 (13:34 +0000)]
Merge changes from topics 'proto', 'lights'

* changes:
  Dump notification records to proto
  Highlight selected channel on launching settings.
  Let developers choose a light color for channels

7 years agoMerge "Improve AnchoredWindow with smart positioning logic."
TreeHugger Robot [Wed, 8 Feb 2017 13:01:53 +0000 (13:01 +0000)]
Merge "Improve AnchoredWindow with smart positioning logic."

7 years agoAutoSize TextView (part 8) - APIs for predefined sizes
Andrei Stingaceanu [Fri, 27 Jan 2017 15:31:19 +0000 (15:31 +0000)]
AutoSize TextView (part 8) - APIs for predefined sizes

* getter/setter for predefined sizes
* reads and configures from XML at construction time
* fix for an ugly bug where the sizes were missing an
  entry in certain cases, e.g: min = 10; max = 20;
  step = 2 would have produced [10, 12, 14, 16, 18]
  instead of [10, 12, 14, 16, 18, 20]
* fix using getHeight()/getWidth() instead of
  untrusted getMeasuredHeight()/getMeasuredWidth()
  and move the auto-sizing triggering to
  onLayout() instead of onMeasure() (while manually
  testing discovered missing or extra pixels and
  sometimes resizing being skipped - it's all fixed
  now)
* fix using deceiving getTotalPaddingBottom()/...Top()
  and replaced with getExtendedPaddingBottom()/..Top()
  (getTotal... was removing the whitespace height but
  auto-size needs to know about it so it can fill the
  space)

Bug: 32221168
Test: attached in the same topic
      run cts-dev -m CtsWidgetTestCases -t \
      android.widget.cts.TextViewTest

Change-Id: Id5a31d0d32b2b4082af45b4bd65af8cb85bdc92e

7 years agoMerge "TextClassificationManager: Avoid exposing lock."
Abodunrinwa Toki [Wed, 8 Feb 2017 12:19:23 +0000 (12:19 +0000)]
Merge "TextClassificationManager: Avoid exposing lock."

7 years agoReplace com.android.internal.util.Predicate with java.util.function.Predicate
Paul Duffin [Tue, 7 Feb 2017 15:04:10 +0000 (15:04 +0000)]
Replace com.android.internal.util.Predicate with java.util.function.Predicate

Bug: 35089332
Bug: 30188076
Test: make checkbuild
Change-Id: I0a5b4bf520fc39b59d8d790b01e9cff0d54e6d21

7 years agoMerge "Fix problem with JavaDoc" am: 8f33fcdc4b am: 4929aafc1d am: 290274df0d
Paul Duffin [Wed, 8 Feb 2017 11:43:36 +0000 (11:43 +0000)]
Merge "Fix problem with JavaDoc" am: 8f33fcdc4b am: 4929aafc1d am: 290274df0d
am: d0a937e84b

Change-Id: Ic0e67021a5423b48bcf7d6ec8b903321d855e3aa

7 years agoMerge "Fix problem with JavaDoc" am: 8f33fcdc4b am: 4929aafc1d
Paul Duffin [Wed, 8 Feb 2017 11:39:15 +0000 (11:39 +0000)]
Merge "Fix problem with JavaDoc" am: 8f33fcdc4b am: 4929aafc1d
am: 290274df0d

Change-Id: I4e9ef88d6aa6c69a35b6b995ebf0b90214aef79d

7 years agoMerge "Fix problem with JavaDoc" am: 8f33fcdc4b
Paul Duffin [Wed, 8 Feb 2017 11:35:19 +0000 (11:35 +0000)]
Merge "Fix problem with JavaDoc" am: 8f33fcdc4b
am: 4929aafc1d

Change-Id: I08c9f20c34a2952105854d107b442884dba220b1

7 years agoMerge "Fix problem with JavaDoc"
Paul Duffin [Wed, 8 Feb 2017 11:31:15 +0000 (11:31 +0000)]
Merge "Fix problem with JavaDoc"
am: 8f33fcdc4b

Change-Id: I25fd01b35a2c1299304401a1333f737ee9252317

7 years agoMerge "Fix problem with JavaDoc"
Treehugger Robot [Wed, 8 Feb 2017 11:21:28 +0000 (11:21 +0000)]
Merge "Fix problem with JavaDoc"

7 years agoMerge "Hide pointer icon while navbar is hidden"
TreeHugger Robot [Wed, 8 Feb 2017 10:56:55 +0000 (10:56 +0000)]
Merge "Hide pointer icon while navbar is hidden"

7 years ago2D Recents: Slightly darken header to differentiate from thumbnail am: 017a3acc3c
Manu Cornet [Wed, 8 Feb 2017 10:50:35 +0000 (10:50 +0000)]
2D Recents: Slightly darken header to differentiate from thumbnail am: 017a3acc3c
am: b72edcc21c

Change-Id: I310f5388c501f851eb78bd7d0a619ffe0a8f1270

7 years ago2D Recents: Slightly darken header to differentiate from thumbnail
Manu Cornet [Wed, 8 Feb 2017 10:46:16 +0000 (10:46 +0000)]
2D Recents: Slightly darken header to differentiate from thumbnail
am: 017a3acc3c

Change-Id: I3eba04869c2cc0095f7f0f43855aeba3bc595759

7 years agoMerge "Re-added sanitization."
TreeHugger Robot [Wed, 8 Feb 2017 10:42:34 +0000 (10:42 +0000)]
Merge "Re-added sanitization."

7 years agoMerge "Import translations. DO NOT MERGE"
TreeHugger Robot [Wed, 8 Feb 2017 10:36:34 +0000 (10:36 +0000)]
Merge "Import translations. DO NOT MERGE"

7 years agoMerge "start/invalidate selection actionMode asynchronously"
TreeHugger Robot [Wed, 8 Feb 2017 10:35:49 +0000 (10:35 +0000)]
Merge "start/invalidate selection actionMode asynchronously"

7 years agoMerge "Fix capturing systrace while hwuimacro is running"
TreeHugger Robot [Wed, 8 Feb 2017 10:24:24 +0000 (10:24 +0000)]
Merge "Fix capturing systrace while hwuimacro is running"

7 years agoMerge "Upgrade thumbnails size by 4x"
Diego Perez [Wed, 8 Feb 2017 10:21:35 +0000 (10:21 +0000)]
Merge "Upgrade thumbnails size by 4x"

7 years agoMerge "Fix support for enum attributes in BridgeContext"
Diego Perez [Wed, 8 Feb 2017 10:21:24 +0000 (10:21 +0000)]
Merge "Fix support for enum attributes in BridgeContext"

7 years agoMerge "Move the logic of batteryMeterDrawable to settingslib"
TreeHugger Robot [Wed, 8 Feb 2017 10:14:24 +0000 (10:14 +0000)]
Merge "Move the logic of batteryMeterDrawable to settingslib"

7 years agoMerge "Apply transfer function when rendering with linear textures"
TreeHugger Robot [Wed, 8 Feb 2017 10:05:59 +0000 (10:05 +0000)]
Merge "Apply transfer function when rendering with linear textures"

7 years agoMerge "Import translations. DO NOT MERGE"
TreeHugger Robot [Wed, 8 Feb 2017 10:04:00 +0000 (10:04 +0000)]
Merge "Import translations. DO NOT MERGE"

7 years agoMerge "TIF: add BaseProgramColumns in TvContract"
TreeHugger Robot [Wed, 8 Feb 2017 09:51:48 +0000 (09:51 +0000)]
Merge "TIF: add BaseProgramColumns in TvContract"

7 years agoMerge "GET_ACCOUNTS_PRIVILEGED permission check for Account Discovery API."
TreeHugger Robot [Wed, 8 Feb 2017 09:44:52 +0000 (09:44 +0000)]
Merge "GET_ACCOUNTS_PRIVILEGED permission check for Account Discovery API."

7 years agoMerge "Remove unnecessary if-else statement from TextUtils#isEmpty. "
TreeHugger Robot [Wed, 8 Feb 2017 09:42:44 +0000 (09:42 +0000)]
Merge "Remove unnecessary if-else statement from TextUtils#isEmpty. "

7 years agoMerge "Removed value from AutoFillManager.virtualFocusChanged()."
TreeHugger Robot [Wed, 8 Feb 2017 09:37:18 +0000 (09:37 +0000)]
Merge "Removed value from AutoFillManager.virtualFocusChanged()."

7 years agoMerge "BootAnimation: change log format when animation starts"
TreeHugger Robot [Wed, 8 Feb 2017 09:17:15 +0000 (09:17 +0000)]
Merge "BootAnimation: change log format when animation starts"

7 years agoFix problem with JavaDoc
Paul Duffin [Wed, 8 Feb 2017 09:14:46 +0000 (09:14 +0000)]
Fix problem with JavaDoc

Test: make checkbuild
Change-Id: Ia321e0a57ff63aa62adee16d611c063a22807176

7 years agoMerge "BatteryManager: Add battery status to getProperty"
TreeHugger Robot [Wed, 8 Feb 2017 09:11:10 +0000 (09:11 +0000)]
Merge "BatteryManager: Add battery status to getProperty"

7 years ago2D Recents: Slightly darken header to differentiate from thumbnail
Manu Cornet [Tue, 7 Feb 2017 01:47:42 +0000 (17:47 -0800)]
2D Recents: Slightly darken header to differentiate from thumbnail

Bug: 34771148
Test: Locally on sw600dp device, sent screenshot to UX to confirm
Change-Id: I74282c6ed81d3b48d554f9acf55d4fafca2c73f4

7 years agoMerge "Propagate StartInputReason to attachNewInputLocked"
Yohei Yukawa [Wed, 8 Feb 2017 07:29:26 +0000 (07:29 +0000)]
Merge "Propagate StartInputReason to attachNewInputLocked"

7 years agoGet rid of VirtualViewDelegate.
Felipe Leme [Tue, 7 Feb 2017 23:32:14 +0000 (15:32 -0800)]
Get rid of VirtualViewDelegate.

VirtualViewDelegate was used by views providing virtual children to:
- auto-fill the chidren
- notify system about children changes

Since the notification logic moved to the AutoFillManager class, it's
kind of an overkill to provide a delegate just for autoFill(); instead,
it's simpler to add a new autoFillVirtual(virtualId, value) method on
View.

BUG: 31001899

Test: manual verification
Test: CtsAutoFillServiceTestCases passes

Change-Id: Ia7670aa665918496a009017a11c3de72c4ed3fa2

7 years agoMerge "Fixing crash when fetching stack bounds."
Winson Chung [Wed, 8 Feb 2017 03:24:56 +0000 (03:24 +0000)]
Merge "Fixing crash when fetching stack bounds."

7 years agoBootAnimation: change log format when animation starts
Wei Wang [Wed, 8 Feb 2017 02:59:58 +0000 (18:59 -0800)]
BootAnimation: change log format when animation starts

Bug: 34499826
Test: on marlin
Change-Id: I719485d399406abc08360620c09d90f4b87934a6

7 years agoAdd new MetricsEvent for carrier demo mode dialog
Christine Franks [Tue, 7 Feb 2017 18:21:55 +0000 (10:21 -0800)]
Add new MetricsEvent for carrier demo mode dialog

Bug: 34341567
Test: manual - builds

Change-Id: Ibd9f7b2a3e857d712bbc10fd10ddf477a69267cc

7 years agoCompanion device chooser UI enchancements
Eugene Susla [Mon, 6 Feb 2017 21:43:30 +0000 (13:43 -0800)]
Companion device chooser UI enchancements

Test: Ensure the device chooser dialog looks nicer.
Bug: 30932767
Change-Id: I62e6437e26f229aedb051998a8745a6e1918dbdc

7 years agoMerge "GNSS Batching - Default Implementation"
Wyatt Riley [Wed, 8 Feb 2017 02:08:01 +0000 (02:08 +0000)]
Merge "GNSS Batching - Default Implementation"

7 years agoMerge "Logging and partial fix for BatteryStats lock contention"
Ian Pedowitz [Wed, 8 Feb 2017 02:02:12 +0000 (02:02 +0000)]
Merge "Logging and partial fix for BatteryStats lock contention"

7 years agoMerge "Deprecating secure setting install_non_market_apps"
Suprabh Shukla [Wed, 8 Feb 2017 01:53:25 +0000 (01:53 +0000)]
Merge "Deprecating secure setting install_non_market_apps"

7 years agoMerge "Use gralloc1 flags to allocate AHardwareBuffers"
Craig Donner [Wed, 8 Feb 2017 01:42:31 +0000 (01:42 +0000)]
Merge "Use gralloc1 flags to allocate AHardwareBuffers"

7 years agoFixing crash when fetching stack bounds.
Winson Chung [Wed, 8 Feb 2017 01:18:01 +0000 (17:18 -0800)]
Fixing crash when fetching stack bounds.

Bug: 35115909
Bug: 35112703
Test: Manual
Change-Id: I708501f2d94682e5e945e2ade52c5c53c2fb8067

7 years agoMove the logic of batteryMeterDrawable to settingslib
jackqdyulei [Fri, 27 Jan 2017 21:31:40 +0000 (13:31 -0800)]
Move the logic of batteryMeterDrawable to settingslib

In Settings, we also need a BatteryMeterDrawable to show battery meter,
that's why I move it to settingslib.

In this cl, what I have changed is listed below:
1. Create BatteryMeterDrawableLib that contains logic of battery
drawing.
2. Still Keep the battery control logic in systemui.
3. Remove hardcoded battery color by using the color state lists.
4. Move some tests to settingslib

Bug: 34771849
Test: make SettingsLibTests

Change-Id: I39c0f0e31ca5e1b958467298db1d0590d16c9f6d

7 years agoRemoved value from AutoFillManager.virtualFocusChanged().
Felipe Leme [Wed, 8 Feb 2017 01:14:52 +0000 (17:14 -0800)]
Removed value from AutoFillManager.virtualFocusChanged().

BUG: 31001899

Test: manual verification
Test: CtsAutoFillServiceTestCases passes

Change-Id: I71c9f9b4b02b210121a1d15860c3c7172d26a62d

7 years agoMerge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev am: f47b9cf1c1
Shreyas Basarge [Wed, 8 Feb 2017 01:08:49 +0000 (01:08 +0000)]
Merge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev am: f47b9cf1c1
am: d54303a1b5

Change-Id: Idaace935baa4834f1ceeb3ce931cf7003f64eb60

7 years agoFix requiresCharging false value ignored issue am: e33c3c81af
Shreyas Basarge [Wed, 8 Feb 2017 01:07:48 +0000 (01:07 +0000)]
Fix requiresCharging false value ignored issue am: e33c3c81af
am: faf365dd5e

Change-Id: Ia3d29cfb59e0eba6aaa536c28e48c17c4d4f9ac9

7 years agoMerge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev am: 85016506c6
Jiaquan He [Wed, 8 Feb 2017 01:03:13 +0000 (01:03 +0000)]
Merge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev am: 85016506c6
am: 5e4c6a675f

Change-Id: Ibfaa0542c432c7c30fd40de214560d6e08a8fbb6

7 years ago2D Recents: Fix the thumbnail radius. am: 083c6fbbd0
Jiaquan He [Wed, 8 Feb 2017 01:02:05 +0000 (01:02 +0000)]
2D Recents: Fix the thumbnail radius. am: 083c6fbbd0
am: 5207be100b

Change-Id: Ic2912d940a877730165a8188ca39ada17ebfa540

7 years agoMerge changes from topic 'Passpoint API Rename' am: 93d66c83cf am: 322c9a9ec5 am...
Peter Qiu [Wed, 8 Feb 2017 01:01:01 +0000 (01:01 +0000)]
Merge changes from topic 'Passpoint API Rename' am: 93d66c83cf am: 322c9a9ec5 am: 1c8845c6b0
am: ac562839f5

Change-Id: I2d0d4756003ef63fe7cd824d53169ce758d597ab

7 years agoMerge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev
Shreyas Basarge [Wed, 8 Feb 2017 00:58:52 +0000 (00:58 +0000)]
Merge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev
am: f47b9cf1c1

Change-Id: Id1488228df87b0facf59f8ad24054ea09f1e94c0

7 years agoFix requiresCharging false value ignored issue
Shreyas Basarge [Wed, 8 Feb 2017 00:58:47 +0000 (00:58 +0000)]
Fix requiresCharging false value ignored issue
am: e33c3c81af

Change-Id: Ia96915b00e274ed6c7c8fdaea46ee5a0ba83bdcb

7 years agohotspot2: expose Passpoint APIs as public am: bffe405e1f am: b898025e8c am: 1a8cb5dfec
Peter Qiu [Wed, 8 Feb 2017 00:58:17 +0000 (00:58 +0000)]
hotspot2: expose Passpoint APIs as public am: bffe405e1f am: b898025e8c am: 1a8cb5dfec
am: 7d172feb01

Change-Id: I0758a871ddbb65b7fe4f46a392020f3584115148

7 years agohotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8...
Peter Qiu [Wed, 8 Feb 2017 00:57:10 +0000 (00:57 +0000)]
hotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8a6 am: 7fec249699 am: 57375308dc
am: 97f04b5efa  -s ours

Change-Id: Ie33e7db651aa4de47ffcc06ab1e7cf93e94c3c48

7 years agohotspot2: rename classes to comply with API guideline am: a77809766c am: c4f4a1ac9e...
Peter Qiu [Wed, 8 Feb 2017 00:56:12 +0000 (00:56 +0000)]
hotspot2: rename classes to comply with API guideline am: a77809766c am: c4f4a1ac9e am: 9bddb8ccd8
am: 6c3bed61c9  -s ours

Change-Id: Id291951c26f5947622f7ce6520d7e343e9f3cf4e

7 years agoMerge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev
Shreyas Basarge [Wed, 8 Feb 2017 00:49:55 +0000 (00:49 +0000)]
Merge "Fix requiresCharging false value ignored issue" into nyc-mr2-dev

7 years agoFix a bug where the last used times could be wrong.
Daniel Nishi [Wed, 8 Feb 2017 00:47:57 +0000 (16:47 -0800)]
Fix a bug where the last used times could be wrong.

If a newer UsageStats came along, it would wipe away
the older UsageStats' last used times because it was
newer and, therefore, a source of truth. This is an
improper assumption, however. The newer UsageStat
may cover a timeframe which does not even have a last
use and, thus, destroys valid data.

Bug: 34857041
Test: FrameworksCoreTest
Change-Id: I5111b0d5a184a31a0a8fbdf12984cc7ef90ccd6e

7 years agoMerge "Use default icons while disambig sheet is loading"
Hakan Seyalioglu [Wed, 8 Feb 2017 00:44:40 +0000 (00:44 +0000)]
Merge "Use default icons while disambig sheet is loading"

7 years agoMerge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev
Jiaquan He [Wed, 8 Feb 2017 00:06:29 +0000 (00:06 +0000)]
Merge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev
am: 85016506c6

Change-Id: Id0a029ed2120e7c040332a0e6fb46b05c5c4b947

7 years ago2D Recents: Fix the thumbnail radius.
Jiaquan He [Wed, 8 Feb 2017 00:06:22 +0000 (00:06 +0000)]
2D Recents: Fix the thumbnail radius.
am: 083c6fbbd0

Change-Id: I93ff98979bcffa0c3724807ec9caac8f39025fa6

7 years agoLogging and partial fix for BatteryStats lock contention
Amith Yamasani [Tue, 7 Feb 2017 23:58:24 +0000 (15:58 -0800)]
Logging and partial fix for BatteryStats lock contention

Don't try to grab the write lock while holding BatteryStats lock.

Add some debugging to see if cpu stats gathering is causing a
delay in some cases.

Bug: 34961340
Test: Manual
Change-Id: I8c7d1abb239abd81a07171cd65be1fbfdbca5fdb

7 years agoMerge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev
TreeHugger Robot [Wed, 8 Feb 2017 00:00:22 +0000 (00:00 +0000)]
Merge "2D Recents: Fix the thumbnail radius." into nyc-mr2-dev

7 years agoSysUI: Add method for plugins to keep status bar full screen
Jason Monk [Mon, 6 Feb 2017 17:15:21 +0000 (09:15 -0800)]
SysUI: Add method for plugins to keep status bar full screen

Lots of things detect overlays these days (installing apps) and the
only way to avoid the problems associated with this is to live in
the status bar window. So allow plugins to hold the window open
when they want to so they can have overlays be in that.

Move StatusBarWindowManager to Dependency to make things easier
as well.

Test: Install the example plugin, test can access QS and interact
      with apps

Change-Id: Ib2288bf56704960847217bad01a480ab407e0ffe

7 years agoMerge changes from topic 'Passpoint API Rename' am: 93d66c83cf am: 322c9a9ec5
Peter Qiu [Tue, 7 Feb 2017 23:54:40 +0000 (23:54 +0000)]
Merge changes from topic 'Passpoint API Rename' am: 93d66c83cf am: 322c9a9ec5
am: 1c8845c6b0

Change-Id: Id22714a3ab72ce5a0b5e1dcd294a7ef7db33da57

7 years agoMerge "Expand seccomp whitelist" am: 10e7aed13f am: 0ab0d47516 am: 53e6c94c0b
Paul Lawrence [Tue, 7 Feb 2017 23:52:03 +0000 (23:52 +0000)]
Merge "Expand seccomp whitelist" am: 10e7aed13f am: 0ab0d47516 am: 53e6c94c0b
am: ce8f7cb388

Change-Id: Ia626354e255a0e8bc66529174460e53ddf72f067

7 years agoMerge "Perform camera permission and app ops check when setting camera for VT." am...
Brad Ebinger [Tue, 7 Feb 2017 23:50:33 +0000 (23:50 +0000)]
Merge "Perform camera permission and app ops check when setting camera for VT." am: ed5c217fc0 am: 3d6f878b75 am: ac3f482f15
am: 63073e0ae8

Change-Id: I5454a51f0f07052f8304606eed9c3d4ec2739582

7 years agohotspot2: expose Passpoint APIs as public am: bffe405e1f am: b898025e8c
Peter Qiu [Tue, 7 Feb 2017 23:49:35 +0000 (23:49 +0000)]
hotspot2: expose Passpoint APIs as public am: bffe405e1f am: b898025e8c
am: 1a8cb5dfec

Change-Id: I75201e7f464e7228458b62d9f79565097b602752

7 years agohotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8...
Peter Qiu [Tue, 7 Feb 2017 23:48:42 +0000 (23:48 +0000)]
hotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8a6 am: 7fec249699
am: 57375308dc

Change-Id: I897cd2c051d7c4b3b5165114d975f5e7398f4556

7 years agoMerge changes from topic 'Passpoint API Rename' am: 93d66c83cf
Peter Qiu [Tue, 7 Feb 2017 23:47:46 +0000 (23:47 +0000)]
Merge changes from topic 'Passpoint API Rename' am: 93d66c83cf
am: 322c9a9ec5

Change-Id: I91231f6c6ad804997071f81f0d3998f1d8231a73

7 years agohotspot2: rename classes to comply with API guideline am: a77809766c am: c4f4a1ac9e
Peter Qiu [Tue, 7 Feb 2017 23:47:32 +0000 (23:47 +0000)]
hotspot2: rename classes to comply with API guideline am: a77809766c am: c4f4a1ac9e
am: 9bddb8ccd8

Change-Id: I78d0edc46b89683832f26061f97f3ebebe245f93

7 years agohotspot2: expose Passpoint APIs as public am: bffe405e1f
Peter Qiu [Tue, 7 Feb 2017 23:40:45 +0000 (23:40 +0000)]
hotspot2: expose Passpoint APIs as public am: bffe405e1f
am: b898025e8c

Change-Id: I10d77f87722d5b21004df1394b1b5d9e82b78976

7 years agohotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8a6
Peter Qiu [Tue, 7 Feb 2017 23:39:50 +0000 (23:39 +0000)]
hotspot2: fix class/function/variable names to comply with API guideline am: da8a67e8a6
am: 7fec249699

Change-Id: Ib37832f30b5174f52e71ef2e3f796c669ba7bda9

7 years agohotspot2: rename classes to comply with API guideline am: a77809766c
Peter Qiu [Tue, 7 Feb 2017 23:38:36 +0000 (23:38 +0000)]
hotspot2: rename classes to comply with API guideline am: a77809766c
am: c4f4a1ac9e

Change-Id: I00cda97fa573cb7dcb3ac8501ead6b34b91f1b1e

7 years agoMerge changes from topic 'Passpoint API Rename'
Peter Qiu [Tue, 7 Feb 2017 23:38:35 +0000 (23:38 +0000)]
Merge changes from topic 'Passpoint API Rename'
am: 93d66c83cf

Change-Id: Ibff6d79c8ca51b760932909e89b21e8c843acc89

7 years agohotspot2: expose Passpoint APIs as public
Peter Qiu [Tue, 7 Feb 2017 23:32:08 +0000 (23:32 +0000)]
hotspot2: expose Passpoint APIs as public
am: bffe405e1f

Change-Id: I86065439f5902b6ce7b0ceec3f295e14f0dff47f

7 years agohotspot2: fix class/function/variable names to comply with API guideline
Peter Qiu [Tue, 7 Feb 2017 23:31:02 +0000 (23:31 +0000)]
hotspot2: fix class/function/variable names to comply with API guideline
am: da8a67e8a6

Change-Id: I48f7b3ab747c0323aec5208c7a0afa123ff68729

7 years agohotspot2: rename classes to comply with API guideline
Peter Qiu [Tue, 7 Feb 2017 23:30:19 +0000 (23:30 +0000)]
hotspot2: rename classes to comply with API guideline
am: a77809766c

Change-Id: Iaaf34a5ec744775e472d1b3eb8673ebf610b1c61

7 years agoMerge changes from topic 'Passpoint API Rename'
Treehugger Robot [Tue, 7 Feb 2017 23:25:02 +0000 (23:25 +0000)]
Merge changes from topic 'Passpoint API Rename'

* changes:
  hotspot2: expose Passpoint APIs as public
  hotspot2: fix class/function/variable names to comply with API guideline
  hotspot2: rename classes to comply with API guideline

7 years agoRe-added sanitization.
Felipe Leme [Tue, 7 Feb 2017 22:29:48 +0000 (14:29 -0800)]
Re-added sanitization.

This code was accidentaly removed when rebasing the auth changes..

BUG: 33269702
BUG: 31001899

Test: manual verification
Test: CtsAutoFillServiceTestCases passes
Change-Id: I0dabad9b76ee6c523a546c494f147796a50531e7

7 years agoMerge "Expand seccomp whitelist" am: 10e7aed13f am: 0ab0d47516
Paul Lawrence [Tue, 7 Feb 2017 23:08:00 +0000 (23:08 +0000)]
Merge "Expand seccomp whitelist" am: 10e7aed13f am: 0ab0d47516
am: 53e6c94c0b

Change-Id: I4f6e9e4c705505861c7b61dcc2c36f3d997a402d

7 years agoMerge "Expand seccomp whitelist" am: 10e7aed13f
Paul Lawrence [Tue, 7 Feb 2017 23:03:32 +0000 (23:03 +0000)]
Merge "Expand seccomp whitelist" am: 10e7aed13f
am: 0ab0d47516

Change-Id: Id7512df1f0df56f73352c82a3ad55eb5360ebd91

7 years agoMerge "Expand seccomp whitelist"
Paul Lawrence [Tue, 7 Feb 2017 22:59:34 +0000 (22:59 +0000)]
Merge "Expand seccomp whitelist"
am: 10e7aed13f

Change-Id: I8060b31a8ac20ddd77b7139c5a3bbd8d146dbc27