auto import from //depot/cupcake/@132589
This commit is contained in:
@@ -62,9 +62,6 @@ public final class Checkin {
|
||||
AUTOTEST_FAILURE,
|
||||
AUTOTEST_SEQUENCE_BEGIN,
|
||||
AUTOTEST_SUITE_BEGIN,
|
||||
AUTOTEST_TCPDUMP_BEGIN,
|
||||
AUTOTEST_TCPDUMP_DATA,
|
||||
AUTOTEST_TCPDUMP_END,
|
||||
AUTOTEST_TEST_BEGIN,
|
||||
AUTOTEST_TEST_FAILURE,
|
||||
AUTOTEST_TEST_SUCCESS,
|
||||
@@ -101,14 +98,14 @@ public final class Checkin {
|
||||
SETUP_SERVER_ERROR,
|
||||
SETUP_SERVER_TIMEOUT,
|
||||
SETUP_NO_DATA_NETWORK,
|
||||
SYSTEM_APP_NOT_RESPONDING,
|
||||
SYSTEM_BOOT,
|
||||
SYSTEM_LAST_KMSG,
|
||||
SYSTEM_RECOVERY_LOG,
|
||||
SYSTEM_RESTART,
|
||||
SYSTEM_SERVICE_LOOPING,
|
||||
SYSTEM_TOMBSTONE,
|
||||
TEST,
|
||||
BATTERY_DISCHARGE_INFO,
|
||||
TEST,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -193,9 +190,6 @@ public final class Checkin {
|
||||
|
||||
// The category is used for GTalk service messages
|
||||
public static final String CATEGORY = "android.server.checkin.CHECKIN";
|
||||
|
||||
// If true indicates that the checkin should only transfer market related data
|
||||
public static final String EXTRA_MARKET_ONLY = "market_only";
|
||||
}
|
||||
|
||||
private static final String TAG = "Checkin";
|
||||
|
||||
@@ -2044,37 +2044,4 @@ public class Im {
|
||||
*/
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://im/lastRmqId");
|
||||
}
|
||||
|
||||
/**
|
||||
* Columns for IM branding resource map cache table. This table caches the result of
|
||||
* loading the branding resources to speed up IM landing page start.
|
||||
*/
|
||||
public interface BrandingResourceMapCacheColumns {
|
||||
/**
|
||||
* The provider ID
|
||||
* <P>Type: INTEGER</P>
|
||||
*/
|
||||
String PROVIDER_ID = "provider_id";
|
||||
/**
|
||||
* The application resource ID
|
||||
* <P>Type: INTEGER</P>
|
||||
*/
|
||||
String APP_RES_ID = "app_res_id";
|
||||
/**
|
||||
* The plugin resource ID
|
||||
* <P>Type: INTEGER</P>
|
||||
*/
|
||||
String PLUGIN_RES_ID = "plugin_res_id";
|
||||
}
|
||||
|
||||
/**
|
||||
* The table for caching the result of loading IM branding resources.
|
||||
*/
|
||||
public static final class BrandingResourceMapCache
|
||||
implements BaseColumns, BrandingResourceMapCacheColumns {
|
||||
/**
|
||||
* The content:// style URL for this table.
|
||||
*/
|
||||
public static final Uri CONTENT_URI = Uri.parse("content://im/brandingResMapCache");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2182,12 +2182,6 @@ public final class Settings {
|
||||
*/
|
||||
public static final String CHECKIN_INTERVAL = "checkin_interval";
|
||||
|
||||
/**
|
||||
* Boolean indicating if the market app should force market only checkins on
|
||||
* install/uninstall. Any non-0 value is considered true.
|
||||
*/
|
||||
public static final String MARKET_FORCE_CHECKIN = "market_force_checkin";
|
||||
|
||||
/**
|
||||
* How frequently (in seconds) to check the memory status of the
|
||||
* device.
|
||||
@@ -2460,14 +2454,6 @@ public final class Settings {
|
||||
public static final String GTALK_SSL_HANDSHAKE_TIMEOUT_MS =
|
||||
"gtalk_ssl_handshake_timeout_ms";
|
||||
|
||||
/**
|
||||
* Enable use of ssl session caching.
|
||||
* 'db' - save each session in a per-process database
|
||||
* not set or any other value - normal java in-memory caching.
|
||||
* Other cache types may be added.
|
||||
*/
|
||||
public static final String SSL_SESSION_CACHE = "ssl_session_cache";
|
||||
|
||||
/**
|
||||
* How many bytes long a message has to be, in order to be gzipped.
|
||||
*/
|
||||
@@ -2780,29 +2766,11 @@ public final class Settings {
|
||||
public static final String VOICE_SEARCH_ENCODING_WIFI = "voice_search_encoding_wifi";
|
||||
|
||||
/**
|
||||
* Whether to use automatic gain control in voice search (0 = disable, 1 = enable).
|
||||
* To be factored out of this class.
|
||||
* Prefix for rules that launch automatic instrumentation test cycles.
|
||||
* The format is the InstrumentationTestRunner (or compatible) package and class,
|
||||
* followed optionally by space-separated key value pairs to pass to it.
|
||||
*/
|
||||
public static final String VOICE_SEARCH_ENABLE_AGC = "voice_search_enable_agc";
|
||||
|
||||
/**
|
||||
* Whether to use noise suppression in voice search (0 = disable, 1 = enable).
|
||||
* To be factored out of this class.
|
||||
*/
|
||||
public static final String VOICE_SEARCH_ENABLE_NS = "voice_search_enable_ns";
|
||||
|
||||
/**
|
||||
* Whether to use the IIR filter in voice search (0 = disable, 1 = enable).
|
||||
* To be factored out of this class.
|
||||
*/
|
||||
public static final String VOICE_SEARCH_ENABLE_IIR = "voice_search_enable_iir";
|
||||
|
||||
/**
|
||||
* List of test suites (local disk filename) for the automatic instrumentation test runner.
|
||||
* The file format is similar to automated_suites.xml, see AutoTesterService.
|
||||
* If this setting is missing or empty, the automatic test runner will not start.
|
||||
*/
|
||||
public static final String AUTOTEST_SUITES_FILE = "autotest_suites_file";
|
||||
public static final String AUTOTEST_PREFIX = "autotest:";
|
||||
|
||||
/**
|
||||
* Interval between synchronous checkins forced by the automatic test runner.
|
||||
@@ -2817,15 +2785,6 @@ public final class Settings {
|
||||
*/
|
||||
public static final String AUTOTEST_REBOOT_SECONDS = "autotest_reboot_seconds";
|
||||
|
||||
|
||||
/**
|
||||
* Threshold values for the duration and level of a discharge cycle, under
|
||||
* which we log discharge cycle info.
|
||||
*/
|
||||
public static final String BATTERY_DISCHARGE_DURATION_THRESHOLD =
|
||||
"battery_discharge_duration_threshold";
|
||||
public static final String BATTERY_DISCHARGE_THRESHOLD = "battery_discharge_threshold";
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
* @hide
|
||||
|
||||
Reference in New Issue
Block a user