7935 Commits

Author SHA1 Message Date
Adam Powell
3e22d199a0 am b5a5a397: am 56a17690: Merge "TransformGestureDetector is now ScaleGestureDetector - scope reduced. N1 screen can\'t reliably handle translation and scaling at the same time." into eclair
Merge commit 'b5a5a39716502be2cd325a6f9b393e155c0636ee'

* commit 'b5a5a39716502be2cd325a6f9b393e155c0636ee':
  TransformGestureDetector is now ScaleGestureDetector - scope reduced.
2010-01-19 00:02:00 -08:00
San Mehat
2b7ff1c471 Merge "MountService: Add new 'unmountSecureContainer' API call" 2010-01-18 07:14:02 -08:00
San Mehat
9dba709d44 MountService: Add new 'unmountSecureContainer' API call
Signed-off-by: San Mehat <san@google.com>
2010-01-18 06:49:19 -08:00
Daisuke Miyakawa
308596eda1 Merge "Make vCard importer support lower case params." 2010-01-17 15:32:02 -08:00
Daisuke Miyakawa
50c6668a27 Make vCard importer support lower case params.
Bug: 2339066
2010-01-18 08:30:39 +09:00
Dianne Hackborn
d68478467e First pass at new device policy and administration APIs.
This adds new DevicAdmin, DevicePolicyManager, and DeviceAdminInfo classes.
See the java docs for each on documentation on them.  Basically: a DeviceAdmin
is what you derive from to administer a device; DevicePolicyManager is what you
use to apply and check your policy requirements and perform other administration
tasks.
2010-01-17 15:10:24 -08:00
Yang Li
ec837187df Added a method for spatial sampling. 2010-01-15 16:14:25 -08:00
Jean-Baptiste Queru
e99f41f193 @hide the individual members instead of the whole class
Bug: 2245521

Change-Id: I8dad1e8d4e1b55dbb9d33b6990c1bd420e914be5
2010-01-15 15:02:53 -08:00
Romain Guy
fe86b04531 Merge "Added clone to these three classes and added more comments." 2010-01-15 14:40:48 -08:00
Yang Li
6fc1f15134 Added clone to these three classes and added more comments. 2010-01-15 14:35:27 -08:00
Romain Guy
dded6447b5 Merge "Added non-uniform scaling for spatial sampling." 2010-01-15 14:31:34 -08:00
Yang Li
55732c52ee Added non-uniform scaling for spatial sampling. 2010-01-15 12:15:40 -08:00
Andrei Popescu
f5dba888c6 Detect if the current network is wifi or not and update webkit.
This info is passed to youtube.com via navigator.networkType

Fixes Bug: 2368650
2010-01-15 20:04:08 +00:00
Jean-Baptiste Queru
843e89757a Remove the BaseColumns inheritance
This is done so that it doesn't bleed into a public API

Bug: 2245521

Change-Id: I2e5f728553f074f0dc2e8a3dfdf90b1c1f189bad
2010-01-15 11:44:35 -08:00
Ficus Kirkpatrick
130a8b71bb Add Dialog.setOnShowListener() to the public API. 2010-01-15 11:35:06 -08:00
Fred Quintana
3084a6f801 rename testHasFeatures to hasFeatures 2010-01-15 11:05:44 -08:00
Vasu Nori
013b9c249d Merge "Change Log.wtf() call to Log.w()" 2010-01-15 10:51:25 -08:00
Vasu Nori
bee5b9d7cb Change Log.wtf() call to Log.w()
messages from Log.wtf() sound pretty bad and engineers seem to think
something terrible has gone wrong.
2010-01-15 10:49:06 -08:00
Nicolas Catania
b8a2aafdef New method to return the last dialed number
Bug:2227429
2010-01-15 10:41:56 -08:00
Nicolas Catania
c5dfa70410 Revert "New method to return the last dialed number"
This reverts commit ac835c94b81c9497404a27af4da9c957e5c82045.
2010-01-15 09:52:54 -08:00
Niko Catania
633feacf17 Merge "New method to return the last dialed number Bug:2227429" 2010-01-15 09:18:05 -08:00
Tom O'Neill
7d92d5af18 Revert a couple of deprecations to fix broken build
Will re-deprecate in a subsequent CL

Change-Id: Ibc246e2e26a68880f3fba3aff3407404f5a57ce3
2010-01-15 08:42:31 -08:00
Nicolas Catania
ac835c94b8 New method to return the last dialed number
Bug:2227429
2010-01-15 08:19:45 -08:00
Tom O'Neill
0f26ec1aa1 Merge "Improve ContractsContract.RawContacts documentation" 2010-01-15 08:15:20 -08:00
Romain Guy
ba7eb9a1d0 Merge "Added non-uniform scaling for spatial sampling and converted double to float." 2010-01-14 18:43:51 -08:00
Tom O'Neill
d6f9cd2cee Improve ContractsContract.RawContacts documentation
Also, a couple of changes for ContactsContract itself.

Change-Id: Ie16024c8bfeac97cfadcc69fa82b46828ef3953d
2010-01-14 18:17:01 -08:00
Yang Li
5c79dee64f Added non-uniform scaling for spatial sampling and converted double to float. 2010-01-14 17:07:38 -08:00
Suchi Amalapurapu
8d528c85d0 Fix build error 2010-01-14 16:44:20 -08:00
Jean-Baptiste Queru
32d80bf3b0 Introduce a non-SDK class to hold the implementation details
This is an exact clone of the "public" class, so that applications
that access the raw content provider directly (i.e. Browser) can
continue doing so, at the expense of not being buildable with the
SDK.

The Download Provider itself will also use those constants.

Bug: 2245521

Change-Id: I15f8ca8a3b69719cfbf403fc2607aac0d3c2b79a
2010-01-14 15:44:20 -08:00
Vasu Nori
e495d1f74a fix a bug in compiled-sql caching & hide public api setMaxSqlCacheSize
this is a clone of https://android-git.corp.google.com/g/#change,35174.
if the cache is full to its capacity and if a new statement is to be cached,
one of the entries in the cache is thrown out to make room for the new one.
but the one that is thrown out doesn't get deallocated by SQLiteProgram
because it doesn't know that it should.
fixed this by having SQLiteProgram finalize its sql statement in
releaseReference*() methods, if the statement is not in cache.
2010-01-14 15:22:58 -08:00
Ficus Kirkpatrick
3908e3c56c Merge "Remove some settings we are no longer using." 2010-01-14 15:08:55 -08:00
Fred Quintana
6e8c730b9e Merge "allow + in usernames" 2010-01-14 14:58:39 -08:00
Fred Quintana
30d203050e allow + in usernames 2010-01-14 14:57:20 -08:00
Ficus Kirkpatrick
0e25caf82e Remove some settings we are no longer using.
All are hidden; no API change.
2010-01-14 14:43:06 -08:00
Suchi Amalapurapu
3c5f6dde74 Merge "app install on sdcard. provide skeleton implementation to install an app on sdcard, just resources. Add new install path for /asec in installd. ignore . when checking for apk path since the sdcard packages id'ed by package name. Add new -s option to adb shell pm Refactor fwd locked from scanMode to ApplicationInfo. Add new flag for sd install Add new parse flags for fwd locking and installing on sdcard New mock api's in PackageManagerService to invoke MountService api's. These will be refactored again and so have been wrapped internally. Some error codes in PackageManager Changes in PackageManagerService to use mPath and mScanPath during installation and switch to using PackageParser.Package.applicationInfo attributes for source and public resource directories. Some known issues that will be addressed later using system_uid for now. needs some tinkering with uid and packagesetting creation to use the actual app uid error handling from vold not very robust. ignoring lot of things for now sending a delayed destroy to delete packages. will revisit later revisit temp file creation later. just copy for now" 2010-01-14 14:01:56 -08:00
Suchi Amalapurapu
af8e9f4805 app install on sdcard. provide skeleton implementation
to install an app on sdcard, just resources.
Add new install path for /asec in installd.
ignore . when checking for apk path since the sdcard packages id'ed
by package name.
Add new -s option to adb shell pm
Refactor fwd locked from scanMode to ApplicationInfo.
Add new flag for sd install
Add new parse flags for fwd locking and installing on sdcard
New mock api's in PackageManagerService to invoke MountService api's. These
will be refactored again and so have been wrapped internally.
Some error codes in PackageManager
Changes in PackageManagerService to use mPath and mScanPath during installation
and switch to using PackageParser.Package.applicationInfo attributes for
source and public resource directories.
Some known issues that will be addressed later
 using system_uid for now. needs some tinkering with uid and packagesetting creation to use the actual app uid
 error handling from vold not very robust. ignoring lot of things for now
 sending a delayed destroy to delete packages. will revisit later
 revisit temp file creation later. just copy for now
2010-01-14 14:02:39 -08:00
Nicolas Roard
1061a4dd73 am 0123101a: am af2af4e5: Add proper support for fixed position elements
Merge commit '0123101af0e15221026f97f19dad23488840700a'

* commit '0123101af0e15221026f97f19dad23488840700a':
  Add proper support for fixed position elements
2010-01-14 13:18:25 -08:00
Nicolas Roard
0123101af0 am af2af4e5: Add proper support for fixed position elements
Merge commit 'af2af4e53aedb14c781d0351565fd7bec55a141a' into eclair-mr2-plus-aosp

* commit 'af2af4e53aedb14c781d0351565fd7bec55a141a':
  Add proper support for fixed position elements
2010-01-14 13:13:26 -08:00
Bjorn Bringert
f6fff20a96 Merge "Expose SearchManager constants for global search" 2010-01-14 13:01:01 -08:00
Bjorn Bringert
55f3ac5f29 Expose SearchManager constants for global search
This change exposes some constants that are needed for
starting the global search activity (QuickSearchBox):

- SearchManager.INTENT_ACTION_GLOBAL_SEARCH
- SearchManager.EXTRA_SELECT_QUERY

Change-Id: I2f1f10070f502a8d5b644e78c03837d5d8b43486
2010-01-14 20:56:59 +00:00
Nicolas Catania
66ef01e232 Revert "New method to return the last dialed number"
This reverts commit 439b7b31676232811ac6f575b396af70e254b803.
2010-01-14 12:22:58 -08:00
Romain Guy
52e2ef8cac Update ListView's children when the drawing cache color hint changes.
Bug #2371777
2010-01-14 12:18:15 -08:00
Niko Catania
e414f32f77 Merge "New method to return the last dialed number Bug:2227429" 2010-01-14 11:51:12 -08:00
Nicolas Catania
439b7b3167 New method to return the last dialed number
Bug:2227429
2010-01-14 11:35:02 -08:00
Mark Wagner
5d3c9c107f Merge "constants for search" 2010-01-14 11:34:43 -08:00
Fred Quintana
bb68a4fc54 add AccountManager.testHasFeatures() to make it easy to check if a given account has a set of features 2010-01-14 10:35:33 -08:00
Mark Wagner
8178753301 Merge "bugfix endfling case (bug 2300534)" 2010-01-14 08:52:12 -08:00
Nicolas Roard
af2af4e53a Add proper support for fixed position elements
this is two-part change, see  http://android-git.corp.google.com/g/#change,37091 for the C++ counterpart.
This CL implements fixed position elements (css position: fixed) using layers, supporting pixels and percent lengths.

It addresses http://b/1914365
2010-01-14 14:46:07 +00:00
Bjorn Bringert
80d3091b99 Merge "Remove Intent.ACTION_GLOBAL_SEARCH" 2010-01-14 02:26:50 -08:00
Bjorn Bringert
7f6528113c Merge "Add QSB's GoogleSearch as the preferred web search provider" 2010-01-14 02:25:34 -08:00