OSDN Git Service

android-x86/frameworks-base.git
9 years agoMerge "Camera: Adjust intrinsic transform coordinate system." into mnc-dev
Eino-Ville Talvala [Tue, 16 Jun 2015 20:37:33 +0000 (20:37 +0000)]
Merge "Camera: Adjust intrinsic transform coordinate system." into mnc-dev

9 years agoMerge "Harden and clean up KeyProtection." into mnc-dev
Alex Klyubin [Tue, 16 Jun 2015 19:54:21 +0000 (19:54 +0000)]
Merge "Harden and clean up KeyProtection." into mnc-dev

9 years agoHarden and clean up KeyProtection.
Alex Klyubin [Tue, 16 Jun 2015 19:31:34 +0000 (12:31 -0700)]
Harden and clean up KeyProtection.

This ensures that instances of this class are immutable and cleans up
some flawed logic discovered when writing up CTS tests.

Bug: 18088752
Change-Id: If9cc33192ada5a8982a2b200ab24cb18331cf958

9 years agoMerge "Harden and clean up KeyGenParameterSpec." into mnc-dev
Alex Klyubin [Tue, 16 Jun 2015 19:11:57 +0000 (19:11 +0000)]
Merge "Harden and clean up KeyGenParameterSpec." into mnc-dev

9 years agoHarden and clean up KeyGenParameterSpec.
Alex Klyubin [Tue, 16 Jun 2015 16:51:20 +0000 (09:51 -0700)]
Harden and clean up KeyGenParameterSpec.

This ensures that instances of this class are immutable and cleans up
some flawed logic discovered when writing up CTS tests.

Bug: 18088752
Change-Id: I7a27dbfc3445599bccabbd26e39535ce988a2ab2

9 years agoCamera: Adjust intrinsic transform coordinate system.
Eino-Ville Talvala [Tue, 16 Jun 2015 18:44:10 +0000 (11:44 -0700)]
Camera: Adjust intrinsic transform coordinate system.

Needs to be in the pre-correction active array coordinates
for consistency.

Bug: 20491394
Change-Id: I7a28499fec59219a0f8d85c1fc37867aed90f4c0

9 years agoMerge "Deprecate SHA-1 in ManagedProvisioning (API doc change)" into mnc-dev
Rubin Xu [Tue, 16 Jun 2015 18:15:27 +0000 (18:15 +0000)]
Merge "Deprecate SHA-1 in ManagedProvisioning (API doc change)" into mnc-dev

9 years agoMerge "disable verbose logs from people notifications." into mnc-dev
Chris Wren [Tue, 16 Jun 2015 17:54:10 +0000 (17:54 +0000)]
Merge "disable verbose logs from people notifications." into mnc-dev

9 years agoMerge "Improved zipping logic so it zips chunks, instead of the whole file at once...
Felipe Leme [Tue, 16 Jun 2015 17:37:46 +0000 (17:37 +0000)]
Merge "Improved zipping logic so it zips chunks, instead of the whole file at once, to avoid OOM." into mnc-dev

9 years agoMerge "Fix null deref" into mnc-dev
John Reck [Tue, 16 Jun 2015 17:34:27 +0000 (17:34 +0000)]
Merge "Fix null deref" into mnc-dev

9 years agoImproved zipping logic so it zips chunks, instead of the whole file at once, to avoid...
Felipe Leme [Tue, 16 Jun 2015 17:25:06 +0000 (10:25 -0700)]
Improved zipping logic so it zips chunks, instead of the whole file at once, to avoid OOM.

BUG: 20447313
Change-Id: I66f90cdd2a07288f9e37a38185f1583c57cf65c8

9 years agoFix null deref
John Reck [Tue, 16 Jun 2015 17:29:31 +0000 (10:29 -0700)]
Fix null deref

Bug: 21857172

willHaveFunctor was assuming that either mStagingDisplayList
or mDisplayList would be non-null but this isn't true. Both
can be null in some scenarios (notably after a trimMemory)

Change-Id: Ia2915b84cfc907ec9c7cbec54ed6dc26283ec998

9 years agoMerge "Additional OP_READ_PHONE_STATE AppOps checks for telephony" into mnc-dev
Fyodor Kupolov [Tue, 16 Jun 2015 17:14:58 +0000 (17:14 +0000)]
Merge "Additional OP_READ_PHONE_STATE AppOps checks for telephony" into mnc-dev

9 years agoMerge "Changed BugReportReceiver to send zipped bugreports." into mnc-dev
Felipe Leme [Tue, 16 Jun 2015 16:59:47 +0000 (16:59 +0000)]
Merge "Changed BugReportReceiver to send zipped bugreports." into mnc-dev

9 years agoMerge "Allow 3P apps to provide structured data within AssistContent." into mnc-dev
Chirag Shah [Tue, 16 Jun 2015 16:54:00 +0000 (16:54 +0000)]
Merge "Allow 3P apps to provide structured data within AssistContent." into mnc-dev

9 years agoMerge "Add ic_dialog_alert_material to symbols" into mnc-dev
Jason Monk [Tue, 16 Jun 2015 16:46:46 +0000 (16:46 +0000)]
Merge "Add ic_dialog_alert_material to symbols" into mnc-dev

9 years agoMerge "Fix issue #21816660 (app standby), work on issue #20882522 (voice interact...
Dianne Hackborn [Tue, 16 Jun 2015 16:40:57 +0000 (16:40 +0000)]
Merge "Fix issue #21816660 (app standby), work on issue #20882522 (voice interact)" into mnc-dev

9 years agoChanged BugReportReceiver to send zipped bugreports.
Felipe Leme [Mon, 1 Jun 2015 19:21:46 +0000 (12:21 -0700)]
Changed BugReportReceiver to send zipped bugreports.

When BugReporterReceiver receives a android.permission.DUMP, it will handle the bugreport file (extra android.intent.extra.BUGREPORT) depending on its format:

 - If it's a plain-text file (extension .txt), it will create a zip file with the plain-text report renamed as bugreport.txt.
 - If there is an error creating the zip file, the plain-text bugreport will be sent instead.
 - If it's not a plain-text file, it fill send the file as is (so if 'dumpstate' is later changed to generate a zipped file directly, nothing has to be done here).

Note that only the bugreport itself is included in the zip file, the screenshot is still sent separately (extra android.intent.extra.SCREENSHOT), so the receiver of the bugreport intent can display a screenshot thumbnail without unzipping the other file (which is useful when sending the bugreport through GMail, for example).

BUG: 20447313
BUG: 21868658
Change-Id: I3fa1e0c89190bfe6fa5c418f0f01ce1fb376f537

9 years agoMerge "Fix floating toolbar flickers." into mnc-dev
Abodunrinwa Toki [Tue, 16 Jun 2015 15:54:24 +0000 (15:54 +0000)]
Merge "Fix floating toolbar flickers." into mnc-dev

9 years agoMerge "Have the final setVisibility cause a requestLayout." into mnc-dev
George Mount [Tue, 16 Jun 2015 15:27:25 +0000 (15:27 +0000)]
Merge "Have the final setVisibility cause a requestLayout." into mnc-dev

9 years agoAdd ic_dialog_alert_material to symbols
Jason Monk [Tue, 16 Jun 2015 15:26:00 +0000 (11:26 -0400)]
Add ic_dialog_alert_material to symbols

Bug: 20751702
Change-Id: I43f8a6020968ffb7ea6e07061258efeb395a3c91

9 years agodisable verbose logs from people notifications.
Chris Wren [Tue, 16 Jun 2015 15:23:12 +0000 (11:23 -0400)]
disable verbose logs from people notifications.

Bug: 20258744
Change-Id: Ifa3fb4f6aefaab4d6c669b1e60f8536515725c0f

9 years agoFix floating toolbar flickers.
Abodunrinwa Toki [Tue, 16 Jun 2015 14:47:04 +0000 (15:47 +0100)]
Fix floating toolbar flickers.

-Flicker was a side effect the delay in hiding the toolbar when
there is a down press on a TextView handle. The timing clashed
with the time it takes for the FloatingActionMode to release a
hide lock on a changing content rect. Extra flickers also happened
if the ActionMode happened to be invalidated at about the same time.
Since there was no longer a hide lock, the toolbar refreshed, getting
rid of the "Select all" menu item.
FIX. I believe we don't need the delayed hide on down press on a
TextView handle. I've removed this.

-I've also updated FloatingActionMode to ensure that hide locks
overlap one another if necessary. The toolbar can only be visible if
all locks are off.

Bug: 21793687
Change-Id: I290ea45ab17d5862b453cb319afb4c8ffe084cd0

9 years agojni: isLoggable calls __android_log_is_loggable
Mark Salyzyn [Fri, 24 Apr 2015 22:55:40 +0000 (15:55 -0700)]
jni: isLoggable calls __android_log_is_loggable

(cherry pick from commit 8685a4569d2bdcb1a7361e3d75f832cf3ba9d4b6)

Will inherit additional functionality and cache improvements

Bug: 17760225
Change-Id: Iab1816d37cc74343d83629d851a5784d4865ebb4

9 years agoMerge "Update documentation for PASSWORD_QUALITY_SOMETHING" into mnc-dev
Benjamin Franz [Tue, 16 Jun 2015 13:22:19 +0000 (13:22 +0000)]
Merge "Update documentation for PASSWORD_QUALITY_SOMETHING" into mnc-dev

9 years agoMerge "Add suggested width for Floating Toolbar on large devices" into mnc-dev
Clara Bayarri [Tue, 16 Jun 2015 12:41:06 +0000 (12:41 +0000)]
Merge "Add suggested width for Floating Toolbar on large devices" into mnc-dev

9 years agoMerge "Floating toolbar no longer obstructs the soft keyboard." into mnc-dev
Abodunrinwa Toki [Tue, 16 Jun 2015 12:29:52 +0000 (12:29 +0000)]
Merge "Floating toolbar no longer obstructs the soft keyboard." into mnc-dev

9 years agoMerge "Better systrace slices for application startup." into mnc-dev
Narayan Kamath [Tue, 16 Jun 2015 11:50:56 +0000 (11:50 +0000)]
Merge "Better systrace slices for application startup." into mnc-dev

9 years agoMerge "Remove dead hidden ConnectivityManager and NetworkInfo APIs." into mnc-dev
Paul Jensen [Tue, 16 Jun 2015 11:30:49 +0000 (11:30 +0000)]
Merge "Remove dead hidden ConnectivityManager and NetworkInfo APIs." into mnc-dev

9 years agoBetter systrace slices for application startup.
Narayan Kamath [Fri, 12 Jun 2015 14:34:35 +0000 (15:34 +0100)]
Better systrace slices for application startup.

This change adds three new timeslices :

- PostFork : As soon as possible after the app forks from the
  zygote. Can be used in conjunction with the system_server
  "Start proc:" event to derive an upper bound on fork() and
  zygote overhead.

- RuntimeInit & ActivityThreadMain for ZygoteInit#runtimeInit
  and ActivityThread#main.

ActivityThread#handleBindApplication and higher level functions
are already well instrumented in systrace. handleBindApplication
should occur immediately after ActivityThread#main.

Note that we use the Activity manager tag to make it easier to
correlate these new events with surrounding events (Start proc
and handleBindApplication) that are already using the AM tag.

bug: 21632700
Change-Id: Ibc01f1721f962c913f3c02a51763b6feb1eb6a4d

9 years agoUpdate documentation for PASSWORD_QUALITY_SOMETHING
Benjamin Franz [Tue, 16 Jun 2015 10:23:38 +0000 (11:23 +0100)]
Update documentation for PASSWORD_QUALITY_SOMETHING

Add a mention that PASSWORD_QUALITY_SOMETHING includes patterns.

Bug: 20441473
Change-Id: I2608f36e338fb2bfbace80d49ee805841d59fa17

9 years agoYet another user restriction.
Jeff Sharkey [Fri, 20 Mar 2015 18:24:04 +0000 (11:24 -0700)]
Yet another user restriction.

Change-Id: Ia2952da19cb974a6a9ba0271a298a10df58b8d18

9 years agoMerge "Update file size formatting." into mnc-dev
Jeff Sharkey [Tue, 16 Jun 2015 04:47:16 +0000 (04:47 +0000)]
Merge "Update file size formatting." into mnc-dev

9 years agoUpdate file size formatting.
Jeff Sharkey [Tue, 16 Jun 2015 04:09:10 +0000 (21:09 -0700)]
Update file size formatting.

Per UX, default strings should have space between value and units
resulting in "12.3 GB".  Add a formatting variant that returns the
various components for callers who want to build their own strings.

For now there is only one mounted emulated volume at a time, and
it's always the primary storage, so give it the default rootId to
keep old Uris working.

Change-Id: Ifcc72a91a6b397ee65dc92642153286186eb64ac

9 years agoMerge "Fixed a bug where the statusbar was still visible while dozing" into mnc-dev
Selim Cinek [Tue, 16 Jun 2015 04:16:01 +0000 (04:16 +0000)]
Merge "Fixed a bug where the statusbar was still visible while dozing" into mnc-dev

9 years agoFixed a bug where the statusbar was still visible while dozing
Selim Cinek [Tue, 16 Jun 2015 03:55:04 +0000 (20:55 -0700)]
Fixed a bug where the statusbar was still visible while dozing

Bug: 18903923
Change-Id: I9c0c85e40ff7e7be2e9c4122fe5786de3649426c

9 years agoMerge "Limit number of fingerprint templates that can be enrolled per device user...
Jim Miller [Tue, 16 Jun 2015 03:48:55 +0000 (03:48 +0000)]
Merge "Limit number of fingerprint templates that can be enrolled per device user" into mnc-dev

9 years agoMerge "Add a test that Network#getNetworkHandle() behaves sanely." into mnc-dev
Erik Kline [Tue, 16 Jun 2015 03:43:53 +0000 (03:43 +0000)]
Merge "Add a test that Network#getNetworkHandle() behaves sanely." into mnc-dev

9 years agoLimit number of fingerprint templates that can be enrolled per device user
Jim Miller [Tue, 16 Jun 2015 03:39:44 +0000 (20:39 -0700)]
Limit number of fingerprint templates that can be enrolled per device user

This change places an upper limit on the number of fingerprint templates that
can be enrolled per account.  This is done primarily for performance reasons, but
may also be imposed by hardware and Trusted Execution Environment (TEE) reasons.

Fixes bug 20731847

Change-Id: I5bc337698bef682cdf67940906d24842e1dffc28

9 years agoRemove dead hidden ConnectivityManager and NetworkInfo APIs.
Paul Jensen [Thu, 11 Jun 2015 13:43:30 +0000 (09:43 -0400)]
Remove dead hidden ConnectivityManager and NetworkInfo APIs.

- There are no callers of
  NetworkInfo.setIsConnectedToProvisioningNetwork(), so remove all the
  code that deals with mIsConnectedToProvisioningNetwork being true,
  including the two ConnectiviyManager APIs.
- There are no callers of
  ConnectivityManager.getMobileRedirectedProvisioningUrl(), so remove
  the code that reads this URL.
- There are no callers of
  ConnectivityManager.captivePortalCheckCompleted(), so remove this
  API which is currently a no-op.

Change-Id: Ifa44c7553c7c45ebe261a2a124d9bf8d6f96c690

9 years agoMerge "Fix API doc of MtpDevice#getObjectHandles." into mnc-dev
Daichi Hirono [Tue, 16 Jun 2015 01:30:28 +0000 (01:30 +0000)]
Merge "Fix API doc of MtpDevice#getObjectHandles." into mnc-dev

9 years agoMerge "Fix unnecessairy announcements when collapsing shade" into mnc-dev
Adrian Roos [Tue, 16 Jun 2015 01:17:59 +0000 (01:17 +0000)]
Merge "Fix unnecessairy announcements when collapsing shade" into mnc-dev

9 years agoFix unnecessairy announcements when collapsing shade
Adrian Roos [Tue, 16 Jun 2015 01:16:58 +0000 (18:16 -0700)]
Fix unnecessairy announcements when collapsing shade

Bug: 20171694
Change-Id: Iec73098e2f778dac4a920a717385139952017330

9 years agoMerge "Add metadata for pre-distortion dimensions." into mnc-dev
Ruben Brunk [Tue, 16 Jun 2015 01:12:56 +0000 (01:12 +0000)]
Merge "Add metadata for pre-distortion dimensions." into mnc-dev

9 years agoMerge "Clean up app-link verification policy" into mnc-dev
Christopher Tate [Tue, 16 Jun 2015 01:10:41 +0000 (01:10 +0000)]
Merge "Clean up app-link verification policy" into mnc-dev

9 years agoAdd metadata for pre-distortion dimensions.
Ruben Brunk [Tue, 16 Jun 2015 00:32:06 +0000 (17:32 -0700)]
Add metadata for pre-distortion dimensions.

Bug: 20491394
Change-Id: I6b95a7fe2fd765571bcd2774aee486d18169a727

9 years agoMerge "Allow killApplicationWithAppId() on secondary users" into mnc-dev
Makoto Onuki [Tue, 16 Jun 2015 00:51:35 +0000 (00:51 +0000)]
Merge "Allow killApplicationWithAppId() on secondary users" into mnc-dev

9 years agoAllow 3P apps to provide structured data within AssistContent.
Chirag Shah [Mon, 15 Jun 2015 20:09:38 +0000 (13:09 -0700)]
Allow 3P apps to provide structured data within AssistContent.

For providing structured metadata to the assistant, we've decided to
standardize on JSON-LD (met with Paige/Ulas/Fabian), and decided the
data to be specified via:

AssistContent.setStructuredData(String structuredDataJson)

This method can be documented for 3P developers as allowing developers
to provide metadata to the assistant with the JSON-LD standard.

This would be centered more about content displayed on the screen,
rather than actions based, so we added it to the AssistContent class

Updated doc: go/setStructuredData

Change-Id: I816f69fd6896df822e30d6c71d840bd01f47e544

9 years agoMerge "Bluetooth energy: fix overflow in calculation" into mnc-dev
Adam Lesinski [Tue, 16 Jun 2015 00:46:04 +0000 (00:46 +0000)]
Merge "Bluetooth energy: fix overflow in calculation" into mnc-dev

9 years agoMerge "Fix accessibility ghosts in quick settings detail" into mnc-dev
Adrian Roos [Tue, 16 Jun 2015 00:35:11 +0000 (00:35 +0000)]
Merge "Fix accessibility ghosts in quick settings detail" into mnc-dev

9 years agoAllow killApplicationWithAppId() on secondary users
Makoto Onuki [Tue, 16 Jun 2015 00:26:40 +0000 (17:26 -0700)]
Allow killApplicationWithAppId() on secondary users

Bug 20949609

Change-Id: If0e766aeb3e8b4aa6aebed3b75bcedd75251e382

9 years agoFix accessibility ghosts in quick settings detail
Adrian Roos [Tue, 16 Jun 2015 00:27:01 +0000 (17:27 -0700)]
Fix accessibility ghosts in quick settings detail

Fixes a bug where the tile that was just clicked on
to go to the detail view would become visible and cause
confusion to accessibility services.

Bug: 20209718
Change-Id: I1678a4fc35e8d739b7c657e868b02a25eddcba1d

9 years agoBluetooth energy: fix overflow in calculation
Adam Lesinski [Tue, 16 Jun 2015 00:19:07 +0000 (17:19 -0700)]
Bluetooth energy: fix overflow in calculation

Use longs instead of ints, because the energy values can get pretty
high.

Change-Id: I43e696ad9e5965c2e616b11920db5bfae5db1671

9 years agoFix issue #21816660 (app standby), work on issue #20882522 (voice interact)
Dianne Hackborn [Mon, 15 Jun 2015 20:35:16 +0000 (13:35 -0700)]
Fix issue #21816660 (app standby), work on issue #20882522 (voice interact)

Issue #21816660: More app standby abuse prevention

We now apply the same rules for deciding when an app has counted
as active when the screen is on as when the screen is off; the only
change this really means is that we don't immediately count foreground
services as making an app active both screen on as well as the
existing behavior for screen off.

Also small fix to how we switch into voice interaction mode that
guarantees we immediately switch to the screen on state.

Issue #20882522 VI: voice interactor service not restarted

This fixes some problems in the framework, allowing it to be
correctly restarted (and rolled by to the default voice interactor
if appropriate).  There are still some problems in system UI that
leave things broken in some cases.

Also small fix to how we switch into voice interaction mode that
guarantees we immediately switch to the screen on state.

Change-Id: Ie4fd098a2f5174a2c94f36d30427fb2a9db3d835

9 years agoMerge "Add KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager." into mnc-dev
Junda Liu [Mon, 15 Jun 2015 23:54:36 +0000 (23:54 +0000)]
Merge "Add KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager." into mnc-dev

9 years agoMerge "Add AssistUtils" into mnc-dev
Adrian Roos [Mon, 15 Jun 2015 23:49:17 +0000 (23:49 +0000)]
Merge "Add AssistUtils" into mnc-dev

9 years agoHave the final setVisibility cause a requestLayout.
George Mount [Mon, 15 Jun 2015 23:17:04 +0000 (16:17 -0700)]
Have the final setVisibility cause a requestLayout.

Bug 21770464

Change-Id: I8c501e8a681634cb87857cf9286b888e61101f13

9 years agoAdd KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager.
Junda Liu [Mon, 15 Jun 2015 20:15:28 +0000 (13:15 -0700)]
Add KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager.

Bug: b/21499566
Change-Id: I9fa33f124e0f617782709597761be75a20797d4b

9 years agoam 418ff647: am 79b30681: Merge "docs: Fixed broken links in TV publishing checklist...
Quddus Chong [Mon, 15 Jun 2015 23:11:02 +0000 (23:11 +0000)]
am 418ff647: am 79b30681: Merge "docs: Fixed broken links in TV publishing checklist. bug: 19298571" into mnc-preview-docs

* commit '418ff64748cb866d3dec8a448efffb0cbceec52d':
  docs: Fixed broken links in TV publishing checklist. bug: 19298571

9 years agoAdd AssistUtils
Adrian Roos [Mon, 15 Jun 2015 20:23:14 +0000 (13:23 -0700)]
Add AssistUtils

Enables code sharing with Settings for consistent
default value handling.

Bug: 21780590
Change-Id: I669b673f90fab503ae0c2179f09ebac9592bd33a

9 years agoFix stuck orientation in SetupWizard
Adrian Roos [Mon, 15 Jun 2015 22:58:35 +0000 (15:58 -0700)]
Fix stuck orientation in SetupWizard

Bug: 21755092
Change-Id: I3144a81523ce2ef4bf6dc457c0ea4b9723dae489

9 years agoam 79b30681: Merge "docs: Fixed broken links in TV publishing checklist. bug: 1929857...
Quddus Chong [Mon, 15 Jun 2015 22:59:13 +0000 (22:59 +0000)]
am 79b30681: Merge "docs: Fixed broken links in TV publishing checklist. bug: 19298571" into mnc-preview-docs

* commit '79b30681bbe26b95a8705e17957c1063517ec8f3':
  docs: Fixed broken links in TV publishing checklist. bug: 19298571

9 years agoMerge "Camera2: fix Surface cast issue" into mnc-dev
Zhijun He [Mon, 15 Jun 2015 22:58:47 +0000 (22:58 +0000)]
Merge "Camera2: fix Surface cast issue" into mnc-dev

9 years agoClean up app-link verification policy
Christopher Tate [Sat, 13 Jun 2015 01:31:24 +0000 (18:31 -0700)]
Clean up app-link verification policy

If an app claims to be the official auto-verified app for any domain
and thus the automatic handler for ACTION_VIEW / {http,https}://...
intents naming that domain, then we require that it verify as the
official app for *all* domains it purports to handle, even if the
other domains are not flagged for verify.

Bug 21335460

Change-Id: I3fdd8620defa31aea36ce738fa63ac94fc53c5f7

9 years agoam 4393a7d2: am c0d84934: am 076c599f: am 1ad5c813: Fix typo in TtsSpan.
John Spurlock [Mon, 15 Jun 2015 22:50:51 +0000 (22:50 +0000)]
am 4393a7d2: am c0d84934: am 076c599f: am 1ad5c813: Fix typo in TtsSpan.

* commit '4393a7d2645cfb9097e616016c58887b9929be55':
  Fix typo in TtsSpan.

9 years agoMerge "docs: Fixed broken links in TV publishing checklist. bug: 19298571" into mnc...
Quddus Chong [Mon, 15 Jun 2015 22:42:41 +0000 (22:42 +0000)]
Merge "docs: Fixed broken links in TV publishing checklist. bug: 19298571" into mnc-preview-docs

9 years agoMerge "Fix Android Keystore key gen for keys requiring user auth." into mnc-dev
Alex Klyubin [Mon, 15 Jun 2015 22:42:02 +0000 (22:42 +0000)]
Merge "Fix Android Keystore key gen for keys requiring user auth." into mnc-dev

9 years agodocs: Fixed broken links in TV publishing checklist.
Quddus Chong [Mon, 15 Jun 2015 22:27:17 +0000 (15:27 -0700)]
docs: Fixed broken links in TV publishing checklist.
bug: 19298571

Change-Id: I5a4d6df6e7c8dd0e1f9ffb652375fa265b677013

9 years agoam c0d84934: am 076c599f: am 1ad5c813: Fix typo in TtsSpan.
John Spurlock [Mon, 15 Jun 2015 22:39:12 +0000 (22:39 +0000)]
am c0d84934: am 076c599f: am 1ad5c813: Fix typo in TtsSpan.

* commit 'c0d849348ae9fb36e725d0644a4927e2e5146295':
  Fix typo in TtsSpan.

9 years agoMerge "Add addional scale component for radialDistortion." into mnc-dev
Ruben Brunk [Mon, 15 Jun 2015 22:34:18 +0000 (22:34 +0000)]
Merge "Add addional scale component for radialDistortion." into mnc-dev

9 years agoAdd addional scale component for radialDistortion.
Ruben Brunk [Mon, 15 Jun 2015 22:33:09 +0000 (15:33 -0700)]
Add addional scale component for radialDistortion.

Bug: 20491394
Change-Id: Ibbaf8bbfe60e1e0c17ac5ba8c641b8616b1148b7

9 years agoMerge "Fixed a bug when resolving theme attributes" into mnc-dev
Selim Cinek [Mon, 15 Jun 2015 22:30:50 +0000 (22:30 +0000)]
Merge "Fixed a bug when resolving theme attributes" into mnc-dev

9 years agoam 076c599f: am 1ad5c813: Fix typo in TtsSpan.
John Spurlock [Mon, 15 Jun 2015 22:23:24 +0000 (22:23 +0000)]
am 076c599f: am 1ad5c813: Fix typo in TtsSpan.

* commit '076c599feb9a18b250de7020c2f1c01561c509f9':
  Fix typo in TtsSpan.

9 years agoFix Android Keystore key gen for keys requiring user auth.
Alex Klyubin [Mon, 15 Jun 2015 22:16:09 +0000 (15:16 -0700)]
Fix Android Keystore key gen for keys requiring user auth.

When Android Keystore generates an asymmetric key pair, it needs to
create a self-signed certificate for that pair, in order to expose
the key pair in the JCA KeyStore abstraction through which keys are
later retrieved. The self-signed certificate is normally signed with
the private key.

This CL avoids using the private key to sign the certificate if the
private key can be used only once the user has been authenticated.
For such keys, a fake (non-verifying) signature is used on the
certificate, same as for cases where the key is not authorized for
signing.

Bug: 21852844
Change-Id: Id78bc1f51d12950db4e37c1e0da6c60057d4e693

9 years agoMerge "Adding config variables for triggering CI action on System update." into mnc-dev
Amit Mahajan [Mon, 15 Jun 2015 22:16:35 +0000 (22:16 +0000)]
Merge "Adding config variables for triggering CI action on System update." into mnc-dev

9 years agoam 1ad5c813: Fix typo in TtsSpan.
John Spurlock [Mon, 15 Jun 2015 22:11:30 +0000 (22:11 +0000)]
am 1ad5c813: Fix typo in TtsSpan.

* commit '1ad5c813211d4d855a0d5396855c80653480aaa4':
  Fix typo in TtsSpan.

9 years agoMerge "Fix ascent and descent of Droid Sans Mono to match Roboto." into mnc-dev
Raph Levien [Mon, 15 Jun 2015 21:29:45 +0000 (21:29 +0000)]
Merge "Fix ascent and descent of Droid Sans Mono to match Roboto." into mnc-dev

9 years agoMerge "Send broadcast when default dialer changes" into mnc-dev
Yorke Lee [Mon, 15 Jun 2015 21:23:26 +0000 (21:23 +0000)]
Merge "Send broadcast when default dialer changes" into mnc-dev

9 years agoFix blink in Explode transition.
George Mount [Thu, 11 Jun 2015 22:32:14 +0000 (15:32 -0700)]
Fix blink in Explode transition.

Bug 21785708

Change-Id: I1250d8e084601a6267906fdb2f3df46cbb8161fc

9 years agoMerge "QS: Add disable animations for the DND tile." into mnc-dev
John Spurlock [Mon, 15 Jun 2015 21:03:53 +0000 (21:03 +0000)]
Merge "QS: Add disable animations for the DND tile." into mnc-dev

9 years agoQS: Add disable animations for the DND tile.
John Spurlock [Mon, 15 Jun 2015 17:49:57 +0000 (13:49 -0400)]
QS: Add disable animations for the DND tile.

Elide the disabled -> enabled anim, since we launch
the detail panel instead.

Bug: 21118976
Change-Id: I392f848641190f114b7838515acb13f22c96e37d

9 years agoMerge "QS icon sizes should be 24dp." into mnc-dev
John Spurlock [Mon, 15 Jun 2015 20:14:48 +0000 (20:14 +0000)]
Merge "QS icon sizes should be 24dp." into mnc-dev

9 years agoFixed a bug when resolving theme attributes
Selim Cinek [Mon, 15 Jun 2015 20:09:25 +0000 (13:09 -0700)]
Fixed a bug when resolving theme attributes

This could lead to a crash.

Bug: 21705571
Change-Id: I8afb0725d6af59bdeac97f4aec58d0f4a2406905

9 years agoQS icon sizes should be 24dp.
John Spurlock [Mon, 15 Jun 2015 19:45:38 +0000 (15:45 -0400)]
QS icon sizes should be 24dp.

Not 28dp.

Bug: 21118976
Change-Id: I9cc326d1333d85b783b85e3238a2a506bf3b55c0

9 years agoFloating toolbar no longer obstructs the soft keyboard.
Abodunrinwa Toki [Fri, 12 Jun 2015 14:35:51 +0000 (15:35 +0100)]
Floating toolbar no longer obstructs the soft keyboard.

-The toolbar popupwindow is set to "need" the keyboard
-Updated toolbar positioning bounds
-Updated toolbar positioning depending on available space

Bug: 21304845
Change-Id: I8d8a59ef6ea639b11bb32cfeb6ead52087fb91e4

9 years agoMerge "Limit shared element transition to shared elements and children." into mnc-dev
George Mount [Mon, 15 Jun 2015 19:43:55 +0000 (19:43 +0000)]
Merge "Limit shared element transition to shared elements and children." into mnc-dev

9 years agoMerge "Revert "Make VPA.setInterpolator(null) unset the interpolator."" into mnc-dev
Vladislav Kaznacheev [Mon, 15 Jun 2015 19:43:10 +0000 (19:43 +0000)]
Merge "Revert "Make VPA.setInterpolator(null) unset the interpolator."" into mnc-dev

9 years agoSend broadcast when default dialer changes
Yorke Lee [Mon, 15 Jun 2015 19:08:24 +0000 (12:08 -0700)]
Send broadcast when default dialer changes

Add hidden TelecomManager.setDefaultDialer for system apps
to set the default dialer and trigger the broadcast

Bug: 21846308
Change-Id: Ifdd30cd1323ab0157edf7fd966173b6c52df6ba0

9 years agoMerge "Only read foreground attr for FrameLayouts for targetSdkVersion < M" into...
Adam Powell [Mon, 15 Jun 2015 19:25:18 +0000 (19:25 +0000)]
Merge "Only read foreground attr for FrameLayouts for targetSdkVersion < M" into mnc-dev

9 years agoMerge "Only re-register callbacks if tuning changed" into mnc-dev
Jason Monk [Mon, 15 Jun 2015 19:24:09 +0000 (19:24 +0000)]
Merge "Only re-register callbacks if tuning changed" into mnc-dev

9 years agoOnly re-register callbacks if tuning changed
Jason Monk [Mon, 15 Jun 2015 19:02:56 +0000 (15:02 -0400)]
Only re-register callbacks if tuning changed

We only need to get the state if the tuning has actually changed.
Currently we hit this every time we open QS which breaks the alpha
animation on the mobile icon.

Bug: 21791609
Change-Id: I3d77a2d0f81d2d7bed600ccd7a2d2c2b4a262db7

9 years agoMerge "Fix EmergencyCallback in NetworkController" into mnc-dev
Jason Monk [Mon, 15 Jun 2015 19:16:35 +0000 (19:16 +0000)]
Merge "Fix EmergencyCallback in NetworkController" into mnc-dev

9 years agoMerge "Fix issue #21813831: Need API for asking to be added to power whitelist" into...
Dianne Hackborn [Mon, 15 Jun 2015 19:12:12 +0000 (19:12 +0000)]
Merge "Fix issue #21813831: Need API for asking to be added to power whitelist" into mnc-dev

9 years agoFix issue #21813831: Need API for asking to be added to power whitelist
Dianne Hackborn [Sat, 13 Jun 2015 01:11:41 +0000 (18:11 -0700)]
Fix issue #21813831: Need API for asking to be added to power whitelist

Add the API.  Clean up a few related things.

Change-Id: I190adad1812f36f6095b98a1001fedb94874e8b5

9 years agoMerge "Obtain handler from context in CaptioningManager" into mnc-dev
Alan Viverette [Mon, 15 Jun 2015 18:05:09 +0000 (18:05 +0000)]
Merge "Obtain handler from context in CaptioningManager" into mnc-dev

9 years agoMerge "Use HTTPS when fetching app link verification resources" into mnc-dev
Christopher Tate [Mon, 15 Jun 2015 17:56:16 +0000 (17:56 +0000)]
Merge "Use HTTPS when fetching app link verification resources" into mnc-dev

9 years agoMerge "Retry intent verification 3 times before failing." into mnc-dev
Joseph Wen [Mon, 15 Jun 2015 17:50:13 +0000 (17:50 +0000)]
Merge "Retry intent verification 3 times before failing." into mnc-dev

9 years agoMerge "Remove EcIesParameterSpec until it's needed." into mnc-dev
Alex Klyubin [Mon, 15 Jun 2015 17:45:45 +0000 (17:45 +0000)]
Merge "Remove EcIesParameterSpec until it's needed." into mnc-dev

9 years agoMerge "Document when self-signed certs have invalid signature." into mnc-dev
Alex Klyubin [Mon, 15 Jun 2015 17:43:45 +0000 (17:43 +0000)]
Merge "Document when self-signed certs have invalid signature." into mnc-dev

9 years agoAdd suggested width for Floating Toolbar on large devices
Clara Bayarri [Mon, 15 Jun 2015 17:26:22 +0000 (18:26 +0100)]
Add suggested width for Floating Toolbar on large devices

The default for non-landscape was too small for tablet devices.

Bug: 21846073
Change-Id: Ic5a1dd5bab5c2a1aa08820f885446da29bb73d84