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 // Overrides low-end device detection, disabling low-end device optimizations. 16 public static final String DISABLE_LOW_END_DEVICE_MODE = "disable-low-end-device-mode"; 17 18 // Overrides low-end device detection, enabling low-end device optimizations. 19 public static final String ENABLE_LOW_END_DEVICE_MODE = "enable-low-end-device-mode"; 20 21 // Adds additional thread idle time information into the trace event output. 22 public static final String ENABLE_IDLE_TRACING = "enable-idle-tracing"; 23 24 // Prevent instantiation. BaseSwitches()25 private BaseSwitches() {} 26 } 27