TreeHugger Robot
1a91866400
Merge "Notify user when application does not support current display zoom" into nyc-mr1-dev
2016-06-23 03:10:11 +00:00
Ta-wei Yen
fbb87a0591
Merge "Add more configuration state for visual voicemail" into nyc-mr1-dev
2016-06-23 02:28:24 +00:00
Andrii Kulian
d82efd36dc
Merge \"Don\'t compare intent filters on singleTask adjacent launch\" into nyc-dev
...
am: 42147f0ff3
Change-Id: Ie767b54e2622a823d8e2fe2a864d788c3a81df74
2016-06-23 02:27:25 +00:00
TreeHugger Robot
42147f0ff3
Merge "Don't compare intent filters on singleTask adjacent launch" into nyc-dev
2016-06-23 02:17:24 +00:00
Philip P. Moltmann
ce7fc6c0a1
Merge \"Do not launch non exposed add printer activity\" into nyc-dev
...
am: 737be111cc
Change-Id: Ief45b4a87071215700eaba8c21d0aff8ab0c8911
2016-06-23 01:55:52 +00:00
TreeHugger Robot
737be111cc
Merge "Do not launch non exposed add printer activity" into nyc-dev
2016-06-23 01:51:08 +00:00
Yohei Yukawa
dc42d7dd13
Merge "Add InputMethodService#exposeContent()" into nyc-mr1-dev
2016-06-23 01:25:39 +00:00
TreeHugger Robot
2b0b1e5a94
Merge "temporarily disable FakeSettingsProviderTest" into nyc-mr1-dev
2016-06-23 01:21:10 +00:00
Andrii Kulian
076b51536c
Merge \"Show unsopported display size dialog on relaunch\" into nyc-dev
...
am: 354c8cde6c
Change-Id: I46f232290ebc5cf924bf696f20eb134076e83b4f
2016-06-23 01:07:00 +00:00
Andrii Kulian
354c8cde6c
Merge "Show unsopported display size dialog on relaunch" into nyc-dev
2016-06-23 01:00:36 +00:00
Alan Viverette
54e12ac7f5
Merge \"Clarify docs for PopupWindow width/height parameters\" into nyc-dev
...
am: 22f887a014
Change-Id: I7311e8cb98da040148e961734646251949975270
2016-06-23 01:00:32 +00:00
Alan Viverette
22f887a014
Merge "Clarify docs for PopupWindow width/height parameters" into nyc-dev
2016-06-23 00:55:52 +00:00
Ta-wei Yen
1121017213
Add more configuration state for visual voicemail
...
Bug: 26944391
Change-Id: I7e0c2649097edca96d6a78fe2dc250a4b4855133
2016-06-22 17:48:52 -07:00
Baligh Uddin
a0b34b32c3
Merge \"Import translations. DO NOT MERGE\" into nyc-dev
...
am: b9aa9b47e7 -s ours
Change-Id: I6800e94bd8ca728af636dc0b46768bee708c6236
2016-06-23 00:43:40 +00:00
Baligh Uddin
b9aa9b47e7
Merge "Import translations. DO NOT MERGE" into nyc-dev
2016-06-23 00:40:04 +00:00
Andrii Kulian
039ba48973
Don't compare intent filters on singleTask adjacent launch
...
Bug: 29578845
Change-Id: Ic1614fc1f321e80ffdc2ab498d720657f393c239
2016-06-22 17:16:45 -07:00
Jim Miller
0520091641
Merge "Enable fingerprint sensor navigation to invoke QuickSettings - rename "FP_NAV" to more generic "SYSTEM_NAVIGATION"" into nyc-mr1-dev
2016-06-23 00:13:42 +00:00
John Reck
0a3a75e121
Merge \"Change approach for windowPositionLostRT\" into nyc-dev
...
am: 16038a0c5f
Change-Id: Ia6d1b8cfa2c5d126b702eb84895093fa3f893b00
2016-06-22 23:45:34 +00:00
Philip P. Moltmann
61209bc924
Do not launch non exposed add printer activity
...
Change-Id: I0b9b11ea0ce0140c77dff2539b1a0a9dcf1558b0
Fixes: 29580579
2016-06-22 16:41:22 -07:00
John Reck
16038a0c5f
Merge "Change approach for windowPositionLostRT" into nyc-dev
2016-06-22 23:38:24 +00:00
Baligh Uddin
12ccb2e52f
Import translations. DO NOT MERGE
...
Auto-generated-cl: translation import
Bug: 29322470
Change-Id: Iec697120d3e8b234bde18e0e37f02ad532796816
2016-06-22 16:33:07 -07:00
Yohei Yukawa
25e0813e6e
Add InputMethodService#exposeContent()
...
This is a follow up CL to my previous CLs [1][2] that introduced
InputConnection#commitContent(InputContentInfo, Bundle) API to enable
IMEs to send a content to the target application.
With this CL, IME developers are able to temporarily expose
InputContentInfo object to the target package without permanently
granting URI permission. Although calling IMS#exposeContent() is
allowed only for the IME that is currently selected, the client is able
to request a temporary read-only access even after the current IME is
switched to any other IME as long as the client keeps InputContentInfo
object.
Here is a sample code snippet about how to use this mechanism.
[IME]
InputContentInfo contentInfo = new InputContentInfo(
contentUri,
new ClipDescription(description, new String[]{mimeType}),
linkUrl);
exposeContent(contentInfo, getCurrentInputEditorInfo());
getCurrentInputConnection().commitContent(inputContentInfo, null);
[App]
try {
contentInfo.requestPermission();
// Load inputContentInfo.getContentUri() here.
} finally {
contentInfo.releasePermission();
}
[1]: Iaadf934a997ffcd6000a516cc3c1873db56e60ad
152944f490
[2]: Ica1ba3154795c1bf44e140dfe639b299f83cd8af
adebb52588
Bug: 29450031
Change-Id: I2772889ca01f2ecb2cdeed4e04a9319bdf7bc5a6
2016-06-22 16:31:41 -07:00
Guang Zhu
3394a8e523
temporarily disable FakeSettingsProviderTest
...
Bug: 29281167
Change-Id: I463d7707c197bd114de762c86e3b3e574d456e3b
2016-06-22 16:30:09 -07:00
John Reck
f23a1b8e4c
Change approach for windowPositionLostRT
...
Bug: 29547000
Instead of shifting the window off screen fall
back to the UI-thread calculated values. This fixes
a race issue around tear-down where we stop
drawing long before our window is actually no longer
visible, as well as fixes a funky issue with
PRESERVE_GEOMETRY during first draw.
Change-Id: I792d1966f5aaee1e703295ae79166c723b97a1dc
2016-06-22 16:10:07 -07:00
Christopher Tate
77d15483ad
Merge \"Fix adb backup/restore\" into nyc-dev
...
am: 45c79447ad
Change-Id: Ieab601b2676f18f068280a9f5dfd8501fd5978f0
2016-06-22 23:05:05 +00:00
TreeHugger Robot
45c79447ad
Merge "Fix adb backup/restore" into nyc-dev
2016-06-22 22:56:37 +00:00
Phil Weaver
403ee9c3e0
Merge \"Report all content changes to a11y services.\" into nyc-dev
...
am: 8ac5bcbab2
Change-Id: I9338fd3ef749f80c4b0252c7c749fe6e395b3c0a
2016-06-22 22:53:17 +00:00
Phil Weaver
8ac5bcbab2
Merge "Report all content changes to a11y services." into nyc-dev
2016-06-22 22:48:50 +00:00
Fyodor Kupolov
7bc1db96ed
Merge \"Use granted userId to look up provider info\" into nyc-dev
...
am: f9f2c7ceef
Change-Id: Ifb6876fbb424632d3b47ec68686c01b56720b0a4
2016-06-22 22:41:42 +00:00
Adam Lesinski
e0dc709ac8
Merge \"Fix build due to missing abstract method impl\" into nyc-dev
...
am: aeef7c4748
Change-Id: I38fc7c88e9c4ea5abf50a0bec5f2302c4622605f
2016-06-22 22:41:38 +00:00
Fyodor Kupolov
f9f2c7ceef
Merge "Use granted userId to look up provider info" into nyc-dev
2016-06-22 22:28:38 +00:00
Adam Lesinski
aeef7c4748
Merge "Fix build due to missing abstract method impl" into nyc-dev
2016-06-22 22:20:56 +00:00
Jim Miller
07e0384a4e
Enable fingerprint sensor navigation to invoke QuickSettings
...
- rename "FP_NAV" to more generic "SYSTEM_NAVIGATION"
Fixes bug 28869612
Change-Id: I321240ee54506633d63a29e987b8d8638c652391
2016-06-22 15:18:13 -07:00
Andrii Kulian
f42cbe8338
Show unsopported display size dialog on relaunch
...
If the display density change made app restart when it was focused
or we navigate back to it after density change and it makes it
restart - we didn't display unsupported display size dialog.
Bug: 29574686
Change-Id: Ic8fdc8a54df160f947e2d340ab2cb2931bac195d
2016-06-22 14:49:58 -07:00
Roozbeh Pournader
9d2a3188fa
Merge "Don't match locales with different scripts in ResourceFilter" into nyc-mr1-dev
2016-06-22 21:20:43 +00:00
Robert Greenwalt
23cac795b0
Merge "Add a Carrier-config specific ratcheter of RATs." into nyc-mr1-dev
2016-06-22 21:12:16 +00:00
Christopher Tate
5cb5e89d77
Fix adb backup/restore
...
* Exclude key/value-only backup participants until we have a chance to
augment the archive format with proper handling.
* Don't back up 'stopped' apps, which would un-stop them
* Fix unspecified-user bindService/startActivity invocations
* Teach adb restore about the onRestoreFinished() lifecycle method
* Implement proper app timeout handling in the adb data flows
* Backstop wallpaper backup against rare leftover-state issues
Bug 28056941
Change-Id: Ia59c71a2c74a632a2c2a527b9b7374229c440d46
2016-06-22 13:53:41 -07:00
Felipe Leme
3aa1952e5c
Merge \"Fixed whitelistManager assignment.\" into nyc-dev
...
am: dea7aa0da1
Change-Id: I3ba91e222cf0a04e2a08bbefc7d0aeea20485bcb
2016-06-22 20:45:54 +00:00
TreeHugger Robot
dea7aa0da1
Merge "Fixed whitelistManager assignment." into nyc-dev
2016-06-22 20:40:21 +00:00
Jeff Sharkey
5d1d637086
Merge \"Avoid runtime restart when storage is missing.\" into nyc-dev
...
am: 18553f5f73
Change-Id: I9303aa177f25f27db7090bf2464218d690aaeafe
2016-06-22 20:14:45 +00:00
Adam Lesinski
0f5caab576
Fix build due to missing abstract method impl
...
getDisplay() was added to Context, which needs to be implemented
for BridgeContext.
Bug:28388969
Change-Id: I7b0ffcbbe252403e35f08d3fa40d6b0e4dbf0daa
2016-06-22 13:11:40 -07:00
TreeHugger Robot
18553f5f73
Merge "Avoid runtime restart when storage is missing." into nyc-dev
2016-06-22 20:08:19 +00:00
Lifu Tang
a956144f0d
Merge \"Added more logs to track WakeLock usages\" into nyc-dev
...
am: 335387a1df
Change-Id: I1383a36b05e50d7a20e477f70c5c8f64ce36041c
2016-06-22 19:56:30 +00:00
Lifu Tang
335387a1df
Merge "Added more logs to track WakeLock usages" into nyc-dev
2016-06-22 19:50:48 +00:00
Phil Weaver
ee77b881a4
Report all content changes to a11y services.
...
Changes were discarded if they arrived too quickly in
A11yManagerService. Excuse content change events from
throttling at this level.
Bug: 29355115
Change-Id: Ifd9da07315ce0c18f59c1dad6a621110ad48343b
2016-06-22 12:35:26 -07:00
Adam Lesinski
e894efa9b6
Merge \"ContextImpl: Keep DisplayAdjustments and Display in sync\" into nyc-dev
...
am: 0bf31c3fa6
Change-Id: Id0d16d2f9d69b87d4b4c01370eeceafe329d1817
2016-06-22 19:16:44 +00:00
Adam Lesinski
0bf31c3fa6
Merge "ContextImpl: Keep DisplayAdjustments and Display in sync" into nyc-dev
2016-06-22 19:11:36 +00:00
smain@google.com
a1489339c7
Merge \\\"Move conceptual test info into \\\"Getting Started with Testing\\\" and move the procedural information into the corresponding guides for creating unit tests.\\\" into mnc-io-docs am: 8af7a89820 am: 359b8cd443
...
am: 9802883bb3
Change-Id: I72640ba34ea604639cd7da7a2cae4fabcfa98dbb
2016-06-22 18:52:41 +00:00
Scott Main
9802883bb3
Merge \\"Move conceptual test info into \\"Getting Started with Testing\\" and move the procedural information into the corresponding guides for creating unit tests.\\" into mnc-io-docs am: 8af7a89820
...
am: 359b8cd443
Change-Id: I91ac419c6c7778b0e357719e1822fe1f6adfe0c3
2016-06-22 18:49:25 +00:00
smain@google.com
359b8cd443
Merge \"Move conceptual test info into \"Getting Started with Testing\" and move the procedural information into the corresponding guides for creating unit tests.\" into mnc-io-docs
...
am: 8af7a89820
Change-Id: I7d153a79fa01b2b35540e3fe1e965a99201110f0
2016-06-22 18:42:27 +00:00