5820 Commits

Author SHA1 Message Date
Jim Miller
23cfead9e6 am f5b9dacd: am ed18d240: am fc5346ed: Merge "Hide fingerprint API until new API is ready" into lmp-dev
* commit 'f5b9dacd48d29877a1c92414fd4d2973e3db6837':
  Hide fingerprint API until new API is ready
2014-08-26 22:34:34 +00:00
Christoph Studer
37b84639a2 am d4b0a4b1: am deefd534: am 7e637d1e: Merge "NoListener: meetsInterruptionFilter -> matchesInterruptionFilter" into lmp-dev
* commit 'd4b0a4b1641031fc3d2e74beecee4eccea46d1ae':
  NoListener: meetsInterruptionFilter -> matchesInterruptionFilter
2014-08-26 22:16:27 +00:00
Jim Miller
e7b6b1aae7 Merge "Hide fingerprint API until new API is ready" into lmp-dev 2014-08-26 22:02:52 +00:00
vandwalle
7aea15a08e Merge "remove passpoint - DO NOT MERGE" into lmp-dev 2014-08-26 21:26:42 +00:00
Christoph Studer
faa9957fd3 Merge "NoListener: meetsInterruptionFilter -> matchesInterruptionFilter" into lmp-dev 2014-08-26 21:16:22 +00:00
Jeff Sharkey
fe6754f944 am be8c6d58: am f3f849d1: am 206f982b: Merge "Treat moving app as installing in new location." into lmp-dev
* commit 'be8c6d5803093578f6710778436c0233469b6536':
  Treat moving app as installing in new location.
2014-08-26 21:02:47 +00:00
Adam Lesinski
d3eb9151b4 am 2626a16b: am 90675431: am a707b2b8: Merge "Split up ComponentName in UsageEvents.Event" into lmp-dev
* commit '2626a16b53267832f13a8c222f7b65514f24ae9d':
  Split up ComponentName in UsageEvents.Event
2014-08-26 20:39:41 +00:00
Jeff Sharkey
264a5f5b34 Merge "Treat moving app as installing in new location." into lmp-dev 2014-08-26 20:29:13 +00:00
Dianne Hackborn
e9c13a60c0 am 11bba84c: am f1bb15d2: am 55953caa: Merge "Fix issue #16311398: Limit number of documents a process can open" into lmp-dev
* commit '11bba84c2da1c30e0d3b67456c04995d16a5db52':
  Fix issue #16311398: Limit number of documents a process can open
2014-08-26 20:23:49 +00:00
Adam Lesinski
1dc0f36401 Merge "Split up ComponentName in UsageEvents.Event" into lmp-dev 2014-08-26 20:09:07 +00:00
Adam Lesinski
12302fe7f5 am 8b474e12: am 800225b1: am ef3e6d97: Merge "Add indexOf method to ArrayMap & ArraySet" into lmp-dev
* commit '8b474e12f87d829e70e74468d7d3b80e070005ba':
  Add indexOf method to ArrayMap & ArraySet
2014-08-26 20:08:40 +00:00
Dianne Hackborn
4610545dd2 Merge "Fix issue #16311398: Limit number of documents a process can open" into lmp-dev 2014-08-26 19:56:26 +00:00
Adam Lesinski
9d9607527f Split up ComponentName in UsageEvents.Event
Some events in the future may not have originated
from a class, so we shouldn't be using ComponentName.

Bug:17259858
Change-Id: Id7fe3245b91596cf27ae4ec51655602f01665622
2014-08-26 12:41:31 -07:00
Selim Gurun
4f2e298ff2 am 227d2e1c: am 690378d1: am 961aaadf: Merge "Remove synchronized from acceptThirdPartyCookies()" into lmp-dev
* commit '227d2e1c9b1387ea4f71fa323b92800cb8413595':
  Remove synchronized from acceptThirdPartyCookies()
2014-08-26 19:39:38 +00:00
Adam Lesinski
27046c88bf Merge "Add indexOf method to ArrayMap & ArraySet" into lmp-dev 2014-08-26 19:38:04 +00:00
Svetoslav
aba358d19d am c81aa9d8: am aae7838d: am 0fbd3928: Merge "Fix accessiblity CTS tests (framework)." into lmp-dev
* commit 'c81aa9d8251ada3d94f74a79426b2a8be6b5ed82':
  Fix accessiblity CTS tests (framework).
2014-08-26 19:24:26 +00:00
Selim Gurun
790f6f449d Merge "Remove synchronized from acceptThirdPartyCookies()" into lmp-dev 2014-08-26 19:09:48 +00:00
Svetoslav
e39baa7307 Merge "Fix accessiblity CTS tests (framework)." into lmp-dev 2014-08-26 19:01:50 +00:00
Adam Lesinski
4e9c07c0de Add indexOf method to ArrayMap & ArraySet
Getting the indexOf is useful for doing compound operations
like:

int i = set.indexOf(key);
if (i >= 0) {
    Object o = set.valueAt(i);
    o.blah();
    set.removeAt(i);
}

Change-Id: I3d4b77d1461ba969fc6b4d332d52d4d084b5b53c
2014-08-26 11:53:32 -07:00
Dianne Hackborn
89ad456ea4 Fix issue #16311398: Limit number of documents a process can open
In application processes, monitor for when we start getting close
to the Dalvik heap limit, and ask the activity manager to try to
prune old activity instances in that case.

Add an explicit API for apps to ask that they have their own
activity instances cleaned up, if they want.

Fix some bugs in launching activities that were not correctly
applying the "multi task" behavior in the appropriate situations
of document-centric recents.

Clean up the activity manager's process removal code to all share
a common path.

Add a new "Spam" option to ActivityTests, which continually creates
new tasks, checking that the activity manager will now prune old
tasks rather than letting the app run out of RAM.

And while I was was doing this, I found problems with the path
for bringing an empty task to the foreground -- it could make
a new task instead of re-starting the root activity in the
existing task.  This is fixed, and some code in the recents
UI for working around the bug is removed.

And as long as I am doing that, we now have nice hooks in to
the activity manager for AppTask to give some APIs for better
managing the task, so add those along with more tests for these
APIs in ActivityTests.

We should look at also having the activity manager try to prune
old tasks when it sees app processes being killed, to better balance
memory use across multiple processes when some processes may host
many documents.  That however is for another CL...

Change-Id: I2bb81c3f92819350c868c7a7470b35817eb9bea9
2014-08-26 11:16:59 -07:00
Christoph Studer
ce7d6d292b NoListener: meetsInterruptionFilter -> matchesInterruptionFilter
Rename Ranking.meetsInterruptionFilter() to matchesInterruptionFilter()
as suggested by API council.

Marking the old version @removed for now, will remove once prebuilds had
the chance to update.

Bug: 17255109
Change-Id: Iaee094df2dddf82029e127c194ea88581d1a48bb
2014-08-26 19:32:29 +02:00
Jeff Sharkey
381d94b712 Treat moving app as installing in new location.
Moving apps to/from SD cards has historically been neglected, meaning
it can easily break.  This happened most recently for split APKs,
64-bit native code, and multiArch support.

To make this easier to maintain, treat move as a no-op upgrade,
following the inheriting code path that split APKs depends on.

Also clean up scary places where different flavors of flags were
being combined, and remove unused flags.  Fix media broadcasts to be
sent based on existing app storage location.

New API to abandon install session without opening it.

Bug: 17158495
Change-Id: Ia33bf8f6fdaae099124dfe534f0e320b37bc8e16
2014-08-26 10:09:27 -07:00
Vinod Krishnan
e3972713e2 am dfc48f3b: am 13f71ede: am dfde8600: Merge "Fwk: Adding an ECG hardware feature" into lmp-dev
* commit 'dfc48f3b799d92064341c6329d7616c0e42e6fb5':
  Fwk: Adding an ECG hardware feature
2014-08-26 17:08:05 +00:00
Svetoslav
04cab1bcc4 Fix accessiblity CTS tests (framework).
1. An external contribution changed the ordering of views for
   accessibility. While it attempted to fix a platform issue
   for a comparator breaking transitivity, it changed the way
   we order views and results in very unnatural accessibility
   traversal order. It also broke CTS tets. This change tweaks
   the comparator which fixes the tests and improves traversal
   order.

2. If there is at least one accessibility service which cares
   about windows we register a callback in the window manager
   for window change notifications. We are updating the window
   list on this callback. There was a case where if the service
   requests window updates and immediately asks for the windows
   it gets none as we have not received a callback from the
   window manager yet. Now this call returns after we get the
   callback in a timed fashion. This is consistent with how the
   other introspection APIs work.

3. Window info objects are cached in the accessibility service
   process. When putting them in the cache a cloning call was
   missing resulting in some cases of clobbering windows given
   to the client. For example, we get some windows, cache them,
   and return these windows to the client. Now a call to clear
   the cache arrives while the user processes the windows and
   the client windows get clobbered.

4. Added API for checking if a window has accessiblity focus
   to be consistent to the API we have to check whether this
   window has input focus.

5. Removed some obsolete code.

bug:16402352

Change-Id: Ided6da4a82cc0fc703008c58a2dff0119a3ff317
2014-08-26 10:06:22 -07:00
Vinod Krishnan
51f6f52d9d Merge "Fwk: Adding an ECG hardware feature" into lmp-dev 2014-08-26 16:37:33 +00:00
Esteban Talavera
119bea6460 am 57d9b9c5: am 4835644c: am 14dcf0ff: Merge "Revert API constants to previous value to match hardcoded value in google3 apps" into lmp-dev
* commit '57d9b9c5d67f64f94071731839524fe6b7308558':
  Revert API constants to previous value to match hardcoded value in google3 apps
2014-08-26 16:27:28 +00:00
vandwalle
808079bd27 remove passpoint - DO NOT MERGE
This CL is dependent on I3d2a230b0362520b9f1b2bc3792260116971e106

Change-Id: I1a0d655877d9368d833d62e231797af4b2560862
2014-08-26 14:56:04 +00:00
Esteban Talavera
fbb28dfb95 Revert API constants to previous value to match hardcoded value in google3 apps
Revert value of DevicePolicyManager constants that were hardcoded in dmagent. See previous change I6f60a43fe23526cfe855d81015feb759cf643926.

Bug: 17275391,17005622
Change-Id: I606b010eb0399f7b34b59c99f96549949410bafc
2014-08-26 15:38:44 +01:00
Ihab Awad
a0fc532bc8 am 37e2bca3: am acf8a2ad: am 4afe15e0: Merge "Support Conferences in Remote Connections" into lmp-dev
* commit '37e2bca3135f09c3ae7fec18da8282974afb5e6c':
  Support Conferences in Remote Connections
2014-08-26 11:39:13 +00:00
Dan Sandler
532d710d27 am e725ff74: am d25fdb22: am 9255b9f4: Allow listeners to fetch current notifications by key.
* commit 'e725ff74f3bfdddfda85a6f7fbf2345b8bdfed5e':
  Allow listeners to fetch current notifications by key.
2014-08-26 10:10:11 +00:00
Shishir Agrawal
9d24eec44e am f01af96c: am ea5dd242: am 3c8681fe: Merge "Modify IccOpenLogicalChannelResponse: Document and rename constants." into lmp-dev
* commit 'f01af96c5c19209358f5a925bde682d38831f59a':
  Modify IccOpenLogicalChannelResponse: Document and rename constants.
2014-08-26 10:09:51 +00:00
Craig Mautner
21257b205b am 1a8416bf: am 7e587f00: am dbbb7951: Merge "Update API per council requests" into lmp-dev
* commit '1a8416bf597a287d8773eac2255c87e606cf853b':
  Update API per council requests
2014-08-26 10:09:45 +00:00
Nancy Chen
d7b43eae63 am ff0847ce: am 2ac6146c: am f9317703: Merge "API review PhoneManager -> TelecommManager. Rename methods (6/6)" into lmp-dev
* commit 'ff0847ced3191ba019b41524855646335d717f62':
  API review PhoneManager -> TelecommManager. Rename methods (6/6)
2014-08-26 10:09:02 +00:00
Paul Jensen
837c32913a am 19d42455: am f6479a6e: am fa1893b4: Merge "Remove captive portal sign-in actions." into lmp-dev
* commit '19d4245533ad2c9c0e03a7b9f553694661550082':
  Remove captive portal sign-in actions.
2014-08-26 10:07:37 +00:00
Hector Dearman
42a9ee5036 Remove synchronized from acceptThirdPartyCookies()
As per API council feedback.

Bug: 17253647
Change-Id: Ide3d4b216f01a96e54111f885813ca8a7c3865ba
2014-08-26 10:56:09 +01:00
Ihab Awad
b8e85c74e5 Support Conferences in Remote Connections
Bug: 16957997

Change-Id: I598854b43aad2f10b5322439741588f5326b74c2
2014-08-25 21:51:19 -07:00
Dan Sandler
ea75fddbb4 Allow listeners to fetch current notifications by key.
Bug: 16574195
Change-Id: I269dbcc7fc8912d84229f6a3d950b0015625ae7a
2014-08-26 04:24:10 +00:00
Shishir Agrawal
b2d21c21cc Merge "Modify IccOpenLogicalChannelResponse: Document and rename constants." into lmp-dev 2014-08-26 00:58:50 +00:00
Craig Mautner
1adbf22861 Merge "Update API per council requests" into lmp-dev 2014-08-26 00:00:18 +00:00
Nancy Chen
e4b1d57dfd Merge "API review PhoneManager -> TelecommManager. Rename methods (6/6)" into lmp-dev 2014-08-25 22:24:09 +00:00
Jim Miller
777f5b2f47 Hide fingerprint API until new API is ready
Fixes bug 16487912

Change-Id: I7dff69a983fb0da4b41e23266a6ec92058e03dbc
2014-08-25 15:12:22 -07:00
Vinod Krishnan
1ab7689ce8 Fwk: Adding an ECG hardware feature
Change-Id: I77e36b010a8ff0cce89a419b64a24f16d7e68caf
2014-08-25 14:32:38 -07:00
Craig Mautner
3b2cd1d59f Update API per council requests
launchTaskBehindBackgroundAnimation => launchTaskBehindTargetAnimation
visibilityMode => transitionVisiblityMode
makeLaunchTaskBehindAnimation => makeTaskLaunchBehind
launch_task_behind_background = launch_task_behind_target

Fixes bug 16958544.

Change-Id: I3b7c791fc0671b8071a5377cf6fa878bd5861f70
2014-08-25 14:25:54 -07:00
Paul Jensen
177cd38b00 Merge "Remove captive portal sign-in actions." into lmp-dev 2014-08-25 18:52:32 +00:00
Nancy Chen
0eb1e402c7 API review PhoneManager -> TelecommManager. Rename methods (6/6)
PhoneManager
- handlePinMMI docs should explain what a Pin is and what MMI is
- rename isInAPhoneCall to isInCall
- rename showCallScreen to showInCallScreen
- merge this class into TelecommManager, we don't need both

Bug: 16960458

Change-Id: I7d573e27ed093f2ddb7849703cc62f9916835393
2014-08-25 10:50:44 -07:00
Shishir Agrawal
ef489ef8ef Modify IccOpenLogicalChannelResponse: Document and rename constants.
Bug: 17189780

Change-Id: Iac96e3bc7265d20f21b29d4a05b615c5ff3cdd6e
2014-08-25 09:09:41 -07:00
Wei Wang
ba48c1d41e am ae31bcd3: am 549f92b1: am 3952e39c: Merge "Fix API council review comments. Also hide certain APIs(1/3)." into lmp-dev
* commit 'ae31bcd330d731f38e1eb7c4d82a6e6500376123':
  Fix API council review comments. Also hide certain APIs(1/3).
2014-08-25 08:25:14 +00:00
Jeff Sharkey
eec8bc405f am ce960bf4: am 9f3ddd55: am e3218d35: Merge "Installing splits into ASECs!" into lmp-dev
* commit 'ce960bf43a17ac79aa9b26b0f80aa90163d18697':
  Installing splits into ASECs!
2014-08-25 08:25:04 +00:00
George Mount
0e3de61f90 am cef72c8a: am 1bb44645: am 8c789490: Merge "API Review: change fragment transition methods." into lmp-dev
* commit 'cef72c8a21a9e8d0bd0f3af42114c72935701d29':
  API Review: change fragment transition methods.
2014-08-25 08:24:58 +00:00
Matthew Williams
d308790da6 am efd88692: am f56a5290: am fdb7e602: Merge "Implement API review feedback for JobScheduler" into lmp-dev
* commit 'efd8869219e16506eab663dc228f4a905fa2bcf0':
  Implement API review feedback for JobScheduler
2014-08-25 08:23:52 +00:00