summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Allow content rect to overshoot the bottom view bounds by 20dp.Abodunrinwa Toki2015-06-163-1/+9
| | | | | Bug: 21816429 Change-Id: I84013286896d145c9501351bc6a638cbda12e8c0
* Merge "Fix floating toolbar flickers." into mnc-devAbodunrinwa Toki2015-06-162-51/+58
|\
| * Fix floating toolbar flickers.Abodunrinwa Toki2015-06-162-51/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -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
* | Merge "Have the final setVisibility cause a requestLayout." into mnc-devGeorge Mount2015-06-161-1/+1
|\ \
| * | Have the final setVisibility cause a requestLayout.George Mount2015-06-151-1/+1
| | | | | | | | | | | | | | | | | | Bug 21770464 Change-Id: I8c501e8a681634cb87857cf9286b888e61101f13
* | | jni: isLoggable calls __android_log_is_loggableMark Salyzyn2015-06-161-25/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry pick from commit 8685a4569d2bdcb1a7361e3d75f832cf3ba9d4b6) Will inherit additional functionality and cache improvements Bug: 17760225 Change-Id: Iab1816d37cc74343d83629d851a5784d4865ebb4
* | | Merge "Update documentation for PASSWORD_QUALITY_SOMETHING" into mnc-devBenjamin Franz2015-06-161-1/+1
|\ \ \
| * | | Update documentation for PASSWORD_QUALITY_SOMETHINGBenjamin Franz2015-06-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a mention that PASSWORD_QUALITY_SOMETHING includes patterns. Bug: 20441473 Change-Id: I2608f36e338fb2bfbace80d49ee805841d59fa17
* | | | Merge "Add suggested width for Floating Toolbar on large devices" into mnc-devClara Bayarri2015-06-161-0/+2
|\ \ \ \ | |_|_|/ |/| | |
| * | | Add suggested width for Floating Toolbar on large devicesClara Bayarri2015-06-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The default for non-landscape was too small for tablet devices. Bug: 21846073 Change-Id: Ic5a1dd5bab5c2a1aa08820f885446da29bb73d84
* | | | Merge "Floating toolbar no longer obstructs the soft keyboard." into mnc-devAbodunrinwa Toki2015-06-161-30/+69
|\ \ \ \
| * | | | Floating toolbar no longer obstructs the soft keyboard.Abodunrinwa Toki2015-06-151-30/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -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
* | | | | Merge "Better systrace slices for application startup." into mnc-devNarayan Kamath2015-06-165-5/+23
|\ \ \ \ \
| * | | | | Better systrace slices for application startup.Narayan Kamath2015-06-165-5/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | Merge "Remove dead hidden ConnectivityManager and NetworkInfo APIs." into ↵Paul Jensen2015-06-166-165/+3
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | mnc-dev
| * | | | | Remove dead hidden ConnectivityManager and NetworkInfo APIs.Paul Jensen2015-06-166-165/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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
* | | | | | Yet another user restriction.Jeff Sharkey2015-06-155-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | Change-Id: Ia2952da19cb974a6a9ba0271a298a10df58b8d18
* | | | | | Merge "Update file size formatting." into mnc-devJeff Sharkey2015-06-164-26/+63
|\ \ \ \ \ \
| * | | | | | Update file size formatting.Jeff Sharkey2015-06-154-26/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | | Merge "Fixed a bug where the statusbar was still visible while dozing" into ↵Selim Cinek2015-06-161-2/+5
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | mnc-dev
| * | | | | | | Fixed a bug where the statusbar was still visible while dozingSelim Cinek2015-06-151-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 18903923 Change-Id: I9c0c85e40ff7e7be2e9c4122fe5786de3649426c
* | | | | | | | Merge "Limit number of fingerprint templates that can be enrolled per device ↵Jim Miller2015-06-163-6/+22
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | user" into mnc-dev
| * | | | | | | | Limit number of fingerprint templates that can be enrolled per device userJim Miller2015-06-153-6/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | | | | Merge "Add a test that Network#getNetworkHandle() behaves sanely." into mnc-devErik Kline2015-06-162-0/+53
|\ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / |/| | | | | | | |
| * | | | | | | | Add a test that Network#getNetworkHandle() behaves sanely.Erik Kline2015-06-152-0/+53
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Additionally: - make zero more obvious for debugging, rather than emitting some inscrutable magic value. Bug: 19537384 Change-Id: Iac9a3297a0dda1ba3d69fd01cf6de81f01fd837e
* | | | | | | | Merge "Fix API doc of MtpDevice#getObjectHandles." into mnc-devDaichi Hirono2015-06-161-1/+2
|\ \ \ \ \ \ \ \
| * | | | | | | | Fix API doc of MtpDevice#getObjectHandles.Daichi Hirono2015-06-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BUG=21782579 Change-Id: Iadec8923c74f62b7aed44e876fb469b41c7dc59b
* | | | | | | | | Merge "Fix unnecessairy announcements when collapsing shade" into mnc-devAdrian Roos2015-06-161-1/+1
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Fix unnecessairy announcements when collapsing shadeAdrian Roos2015-06-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 20171694 Change-Id: Iec73098e2f778dac4a920a717385139952017330
* | | | | | | | | | Merge "Add metadata for pre-distortion dimensions." into mnc-devRuben Brunk2015-06-163-21/+91
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Add metadata for pre-distortion dimensions.Ruben Brunk2015-06-153-21/+91
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 20491394 Change-Id: I6b95a7fe2fd765571bcd2774aee486d18169a727
* | | | | | | | | | | Merge "Clean up app-link verification policy" into mnc-devChristopher Tate2015-06-163-46/+64
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Clean up app-link verification policyChristopher Tate2015-06-153-46/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | | | | | | | Merge "Allow killApplicationWithAppId() on secondary users" into mnc-devMakoto Onuki2015-06-161-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Allow killApplicationWithAppId() on secondary usersMakoto Onuki2015-06-151-1/+1
| |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug 20949609 Change-Id: If0e766aeb3e8b4aa6aebed3b75bcedd75251e382
* | | | | | | | | | | | Merge "Bluetooth energy: fix overflow in calculation" into mnc-devAdam Lesinski2015-06-163-44/+47
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Bluetooth energy: fix overflow in calculationAdam Lesinski2015-06-153-44/+47
| | |_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use longs instead of ints, because the energy values can get pretty high. Change-Id: I43e696ad9e5965c2e616b11920db5bfae5db1671
* | | | | | | | | | | | Merge "Fix accessibility ghosts in quick settings detail" into mnc-devAdrian Roos2015-06-161-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|/ / / / / / |/| | | | | | | | | | |
| * | | | | | | | | | | Fix accessibility ghosts in quick settings detailAdrian Roos2015-06-151-0/+3
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | | | | | | | | Merge "Add KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager." ↵Junda Liu2015-06-153-3/+23
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into mnc-dev
| * | | | | | | | | | | Add KEY_DEFAULT_SIM_CALL_MANAGER_STRING to carrierconfigmanager.Junda Liu2015-06-153-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: b/21499566 Change-Id: I9fa33f124e0f617782709597761be75a20797d4b
* | | | | | | | | | | | Merge "Add AssistUtils" into mnc-devAdrian Roos2015-06-153-67/+150
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | Add AssistUtilsAdrian Roos2015-06-153-67/+150
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enables code sharing with Settings for consistent default value handling. Bug: 21780590 Change-Id: I669b673f90fab503ae0c2179f09ebac9592bd33a
* | | | | | | | | | | | am 418ff647: am 79b30681: Merge "docs: Fixed broken links in TV publishing ↵Quddus Chong2015-06-151-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | checklist. bug: 19298571" into mnc-preview-docs * commit '418ff64748cb866d3dec8a448efffb0cbceec52d': docs: Fixed broken links in TV publishing checklist. bug: 19298571
| * \ \ \ \ \ \ \ \ \ \ \ am 79b30681: Merge "docs: Fixed broken links in TV publishing checklist. ↵Quddus Chong2015-06-151-2/+2
| |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug: 19298571" into mnc-preview-docs * commit '79b30681bbe26b95a8705e17957c1063517ec8f3': docs: Fixed broken links in TV publishing checklist. bug: 19298571
| | * \ \ \ \ \ \ \ \ \ \ \ Merge "docs: Fixed broken links in TV publishing checklist. bug: 19298571" ↵Quddus Chong2015-06-151-2/+2
| | |\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into mnc-preview-docs
| | | * | | | | | | | | | | | docs: Fixed broken links in TV publishing checklist.Quddus Chong2015-06-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bug: 19298571 Change-Id: I5a4d6df6e7c8dd0e1f9ffb652375fa265b677013
* | | | | | | | | | | | | | | Fix stuck orientation in SetupWizardAdrian Roos2015-06-151-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bug: 21755092 Change-Id: I3144a81523ce2ef4bf6dc457c0ea4b9723dae489
* | | | | | | | | | | | | | | Merge "Camera2: fix Surface cast issue" into mnc-devZhijun He2015-06-151-7/+10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Camera2: fix Surface cast issueZhijun He2015-06-151-7/+10
| | |_|_|_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Can not cast an object array directly to a Surface array. Change-Id: Ie2cb711f9e1ff0fc17d6038992dc3c7af9471ccf