Svetoslav
eccfe65f9d
am 6ce161d1: Merge "Cancel current work in PrintDocumentAdatper if printing is cancelled." into klp-dev
...
* commit '6ce161d1762a1c74b1ed6931c1d54f1f553267b0':
Cancel current work in PrintDocumentAdatper if printing is cancelled.
2013-10-31 14:44:50 -07:00
Svetoslav
6ce161d176
Merge "Cancel current work in PrintDocumentAdatper if printing is cancelled." into klp-dev
2013-10-31 21:42:06 +00:00
Jim Miller
a999d463c1
Remove deprecated API calls to KeyguardManager from statusbar
...
Fixes bug 11448304
Change-Id: I3049a20d9320af0425d7a8f08d5aa208e470e292
2013-10-31 14:32:29 -07:00
Svetoslav
d270cb9264
Cancel current work in PrintDocumentAdatper if printing is cancelled.
...
Layout and write may take some time during which the user can
cancel printing. Currently we wait for the last operation,
being write or layout, to complete before closing the print
dialog. Now in such a scenario we request a cancellation of
the ongoing operation.
bug:11329523
Change-Id: Ia9d747163cc73509369a86c8b5afc83b7ee54859
2013-10-31 14:30:58 -07:00
Jason Monk
c761f3b6d0
am 7c053a2f: am cb134203: am 86f5a149: Merge "Change PacProxySelector to return unresolved addr" into klp-dev
...
* commit '7c053a2fa5b9f280faa03fff63ed2d11d6cf5211':
Change PacProxySelector to return unresolved addr
2013-10-31 11:54:47 -07:00
Jason Monk
7c053a2fa5
am cb134203: am 86f5a149: Merge "Change PacProxySelector to return unresolved addr" into klp-dev
...
* commit 'cb1342032283d1a415eb4f916a79039aa8ed0cbf':
Change PacProxySelector to return unresolved addr
2013-10-31 11:50:07 -07:00
John Spurlock
20400abdb8
am 9916eb6e: am 39541bfa: am a0bc738f: Merge "Move coalescing to callback, optimize KeyguardStatusView." into klp-dev
...
* commit '9916eb6ecbb6225d0b98c7090b75b8d1f4c0833e':
Move coalescing to callback, optimize KeyguardStatusView.
2013-10-31 11:47:57 -07:00
Jason Monk
cb13420322
am 86f5a149: Merge "Change PacProxySelector to return unresolved addr" into klp-dev
...
* commit '86f5a1499bc681ffae2b9f2300c9a62653d511dc':
Change PacProxySelector to return unresolved addr
2013-10-31 11:47:03 -07:00
John Spurlock
9916eb6ecb
am 39541bfa: am a0bc738f: Merge "Move coalescing to callback, optimize KeyguardStatusView." into klp-dev
...
* commit '39541bfad07c4f13d61981c1e231144168b41aa8':
Move coalescing to callback, optimize KeyguardStatusView.
2013-10-31 11:46:15 -07:00
Jason Monk
86f5a1499b
Merge "Change PacProxySelector to return unresolved addr" into klp-dev
2013-10-31 18:43:53 +00:00
John Spurlock
39541bfad0
am a0bc738f: Merge "Move coalescing to callback, optimize KeyguardStatusView." into klp-dev
...
* commit 'a0bc738f46f62ba1a02e956a8c262323ab4ab75c':
Move coalescing to callback, optimize KeyguardStatusView.
2013-10-31 11:43:28 -07:00
John Spurlock
a0bc738f46
Merge "Move coalescing to callback, optimize KeyguardStatusView." into klp-dev
2013-10-31 18:41:08 +00:00
Jason Monk
179d6e8e20
Change PacProxySelector to return unresolved addr
...
This was found by a bug in Firefox where it expects the addresses from a
ProxySelector to be unresolved. Since ProxySelectorImpl returns unresolved
addresses the PAC version should as well to avoid breaking apps.
The ProxyServer also needed to be updated to reflect this change as it was
expecting a resolved InetSocketAddress.
Bug: 11443853
Change-Id: I3a4e9e248d22d7808603c147660df708e01cdf82
2013-10-31 14:17:48 -04:00
John Spurlock
b7e786c137
am 6252c996: am 6af08c29: am b207ea96: Merge "Update ic_qs_ime assets to standard brightness." into klp-dev
...
* commit '6252c996ee7c45fd76171d63d5c7d3cd4bbf803e':
Update ic_qs_ime assets to standard brightness.
2013-10-31 10:46:24 -07:00
John Spurlock
6252c996ee
am 6af08c29: am b207ea96: Merge "Update ic_qs_ime assets to standard brightness." into klp-dev
...
* commit '6af08c29d8353ad63a4d393ef3d72fcf68c8817b':
Update ic_qs_ime assets to standard brightness.
2013-10-31 10:42:28 -07:00
John Spurlock
6af08c29d8
am b207ea96: Merge "Update ic_qs_ime assets to standard brightness." into klp-dev
...
* commit 'b207ea960911867e7c1951338df24108d37ad189':
Update ic_qs_ime assets to standard brightness.
2013-10-31 10:39:15 -07:00
John Spurlock
b207ea9609
Merge "Update ic_qs_ime assets to standard brightness." into klp-dev
2013-10-31 17:36:06 +00:00
John Spurlock
385a63d56a
Move coalescing to callback, optimize KeyguardStatusView.
...
Move the recent keyguard hidden coalescing down to the callback
level. The lifetime of each callback can be short, make sure
they see visibility changes at least once for each change local
to their lifetime.
KeyguardStatusView.refresh() is called multiple times, and instances
are recreated often. This results in expensive computations
filling the sysui/keyguard ui queue, adding to overall sluggishness.
Traceview points to DateFormat.getBestDateTimePattern as the
main culprit.
As of this change, refresh() will only call the expensive date pattern
computations when absolutely necessary, resulting in better
performance turning the screen off/on.
Bug:11221659
Bug:11447043
Change-Id: I3d4105af7db608803b82d8ef0ff141e42c154257
2013-10-31 10:49:50 -04:00
Jim Miller
8a26b43cd8
Fix glitch with switching users from QuickSettings
...
Since keyguard and systemui were merged into the same process to save
memory, they share the same Looper and graphics context. As a result,
there's no way to allow concurrent animation while keyguard inflates.
The workaround is to add a slight delay to allow the animation to finish.
Workaround for bug 11046339
Change-Id: I355ca4fb325312bae87d587acfb12b475ecdeba4
2013-10-30 15:23:46 -07:00
Craig Mautner
94976ef825
am c74d0b6c: am 744e0a33: am 6dc499c6: Merge "Save and restore media metadata." into klp-dev
...
* commit 'c74d0b6cf4a51a24057255452edb2fce4941347c':
Save and restore media metadata.
2013-10-30 14:15:10 -07:00
Craig Mautner
c74d0b6cf4
am 744e0a33: am 6dc499c6: Merge "Save and restore media metadata." into klp-dev
...
* commit '744e0a330937f97a6cc24830e4433cb00b1422d2':
Save and restore media metadata.
2013-10-30 14:12:49 -07:00
Craig Mautner
744e0a3309
am 6dc499c6: Merge "Save and restore media metadata." into klp-dev
...
* commit '6dc499c6da2affa427dc982e5a50ddf3cb9d5aa9':
Save and restore media metadata.
2013-10-30 14:10:13 -07:00
Craig Mautner
6dc499c6da
Merge "Save and restore media metadata." into klp-dev
2013-10-30 21:05:59 +00:00
Michael Jurka
b0a2dc5678
am ac132888: am 9a4c6988: am 0a1988b6: Merge "Make wallpaper cropper more robust " into klp-dev
...
* commit 'ac132888d0d6362149fffcfda1a8b8aaf4ac0c1f':
Make wallpaper cropper more robust
2013-10-30 11:07:41 -07:00
Michael Jurka
ac132888d0
am 9a4c6988: am 0a1988b6: Merge "Make wallpaper cropper more robust " into klp-dev
...
* commit '9a4c69882401f243f07c3bf77bf57a957b89c767':
Make wallpaper cropper more robust
2013-10-30 11:05:51 -07:00
Michael Jurka
9a4c698824
am 0a1988b6: Merge "Make wallpaper cropper more robust " into klp-dev
...
* commit '0a1988b6477f012768f53f7e216b7defa45c8e51':
Make wallpaper cropper more robust
2013-10-30 11:04:20 -07:00
Craig Mautner
8334192974
Save and restore media metadata.
...
Do not lose media information when configuration changes. Also, do not
wipe out that saved information when the RemoteController is
reconstructed.
Fixes bug 11293859.
Change-Id: Id9e539367bfda2cc6833dc61c922c57ae45dd7b7
2013-10-30 10:33:01 -07:00
Baligh Uddin
be6eafa6ec
Import translations. DO NOT MERGE
...
Change-Id: I60692dd7efe304272b13a7d5f6a92515e0a3a340
Auto-generated-cl: translation import
2013-10-30 09:35:47 -07:00
Baligh Uddin
1fada0a012
Import translations. DO NOT MERGE
...
Change-Id: Ife16f0c4467fe5d8cd8e8f9908448c100e01e9ca
Auto-generated-cl: translation import
2013-10-30 09:34:05 -07:00
Baligh Uddin
289de24d64
Import translations. DO NOT MERGE
...
Change-Id: I9a274d2dae9b41ed8378f460da42507f44f429c5
Auto-generated-cl: translation import
2013-10-30 09:33:10 -07:00
Baligh Uddin
05938f545d
Import translations. DO NOT MERGE
...
Change-Id: I29e32b9b384864e27601d1abbec101ba5a9f839c
Auto-generated-cl: translation import
2013-10-30 09:27:21 -07:00
Baligh Uddin
146a9effd2
Import translations. DO NOT MERGE
...
Change-Id: I6562d76f34b2bc4a701796a3a18fce1c919fd8f9
Auto-generated-cl: translation import
2013-10-30 08:57:05 -07:00
Baligh Uddin
88c5345964
Import translations. DO NOT MERGE
...
Change-Id: Ic406ab6515206bfd57a79d866f503dcd4f8cd288
Auto-generated-cl: translation import
2013-10-30 08:55:24 -07:00
Baligh Uddin
8c8bc67422
Import translations. DO NOT MERGE
...
Change-Id: I39000236c0f0f4d3e398ef5e5fb15dcbf1da06ab
Auto-generated-cl: translation import
2013-10-30 08:54:25 -07:00
Baligh Uddin
407fd711d3
Import translations. DO NOT MERGE
...
Change-Id: I1a818740cb5af5e65e17c7d3716b59b261e560b1
Auto-generated-cl: translation import
2013-10-30 08:53:50 -07:00
Baligh Uddin
f1228e3550
Import translations. DO NOT MERGE
...
Change-Id: I6275ae5da91b961e11974efd80e6b4947bd44972
Auto-generated-cl: translation import
2013-10-30 08:53:01 -07:00
Baligh Uddin
8167db8d6b
Import translations. DO NOT MERGE
...
Change-Id: I4e7a1a3e0a6983e2be80aee88030d2a1848e877a
Auto-generated-cl: translation import
2013-10-30 08:51:46 -07:00
Michael Jurka
7b215cb922
Make wallpaper cropper more robust
...
- don't crash if image passed to wallpaper picker
is invalid
- close input streams correctly
Bug: 11413915
Bug: 11380658
Bug: 11362731
2013-10-30 14:54:21 +01:00
John Spurlock
c0156b82fd
Update ic_qs_ime assets to standard brightness.
...
Bug:11412369
Change-Id: I582f4dfc28eb7453d67c5fe9c1b90a38ad756666
2013-10-30 09:35:22 -04:00
Jim Miller
d2a46a9a6a
am ea1a439a: am 3641571c: am ae47d826: Merge "Add an intermediate dimens resource for 540dp device." into klp-dev
...
* commit 'ea1a439a900b27cf1eb67ec6ed9e6ae43d754b43':
Add an intermediate dimens resource for 540dp device.
2013-10-29 19:51:49 -07:00
Jim Miller
ea1a439a90
am 3641571c: am ae47d826: Merge "Add an intermediate dimens resource for 540dp device." into klp-dev
...
* commit '3641571c93f12720b7f4769175e302a6875a9dce':
Add an intermediate dimens resource for 540dp device.
2013-10-29 19:48:38 -07:00
Jim Miller
3641571c93
am ae47d826: Merge "Add an intermediate dimens resource for 540dp device." into klp-dev
...
* commit 'ae47d826d883657a4332f549c165ae85124bd1cf':
Add an intermediate dimens resource for 540dp device.
2013-10-29 19:46:36 -07:00
Jim Miller
65a788585b
Add an intermediate dimens resource for 540dp device.
...
A 540dp device causes keyguard to select SlidingChallengeLayout
and a height of 400dp which isn't enough space for the security
area. This fix adds an intermediate value to grow the security
area slightly.
Fixes bug 11344424
Change-Id: I35c979f619c593b604e4bf45afd3e591329229e4
2013-10-29 16:31:58 -07:00
John Spurlock
3ec7e54c8a
am 646f19c9: am de50a5e7: am 927d854f: Merge "Optimize sysui ui queue during keyguard unlock." into klp-dev
...
* commit '646f19c929ae85ab703533c36962292fa6c990ca':
Optimize sysui ui queue during keyguard unlock.
2013-10-29 14:59:35 -07:00
Jeff Sharkey
854419b5c7
am 88c84f97: am dd225d28: am 7fbba162: Merge "Suppress OperationCanceledException logging." into klp-dev
...
* commit '88c84f97186b9f5808949a8b11357f6f8d27f046':
Suppress OperationCanceledException logging.
2013-10-29 14:59:28 -07:00
John Spurlock
887b4e89e7
am 2fcefe45: am 161e43dc: am 1b5bd6b6: Merge "Update QS settings icon, remove unused location icon." into klp-dev
...
* commit '2fcefe45718af44452b725b61f4051f507cb7e5d':
Update QS settings icon, remove unused location icon.
2013-10-29 14:31:34 -07:00
John Spurlock
646f19c929
am de50a5e7: am 927d854f: Merge "Optimize sysui ui queue during keyguard unlock." into klp-dev
...
* commit 'de50a5e7e116870cded377c77c5dbe8fa2498b40':
Optimize sysui ui queue during keyguard unlock.
2013-10-29 14:01:56 -07:00
John Spurlock
de50a5e7e1
am 927d854f: Merge "Optimize sysui ui queue during keyguard unlock." into klp-dev
...
* commit '927d854ff4dc66edd22c109400233eb2d76dfce6':
Optimize sysui ui queue during keyguard unlock.
2013-10-29 13:57:16 -07:00
John Spurlock
927d854ff4
Merge "Optimize sysui ui queue during keyguard unlock." into klp-dev
2013-10-29 20:55:04 +00:00
Jeff Sharkey
88c84f9718
am dd225d28: am 7fbba162: Merge "Suppress OperationCanceledException logging." into klp-dev
...
* commit 'dd225d28e6e7a57a9ae70c4a7f6217358e3a2052':
Suppress OperationCanceledException logging.
2013-10-29 13:52:54 -07:00