Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / base / android / java / src / org / chromium / base / BaseSwitches.java
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.base;
6
7 /**
8  * Contains all of the command line switches that are specific to the base/
9  * portion of Chromium on Android.
10  */
11 public abstract class BaseSwitches {
12     // Block onCreate() of Chrome until a Java debugger is attached.
13     public static final String WAIT_FOR_JAVA_DEBUGGER = "wait-for-java-debugger";
14
15     // Block ChildProcessMain thread of render process service until a Java debugger is attached.
16     public static final String RENDERER_WAIT_FOR_JAVA_DEBUGGER = "renderer-wait-for-java-debugger";
17
18     // Force low-end device when set to 1;
19     // Force non-low-end device when set to 0;
20     // Auto-detect low-end device when set to other values or empty;
21     public static final String LOW_END_DEVICE_MODE = "low-end-device-mode";
22
23     // Adds additional thread idle time information into the trace event output.
24     public static final String ENABLE_IDLE_TRACING = "enable-idle-tracing";
25
26     // Default country code to be used for search engine localization.
27     public static final String DEFAULT_COUNTRY_CODE_AT_INSTALL = "default-country-code";
28
29     // Prevent instantiation.
30     private BaseSwitches() {}
31 }