blob: c1a6b5dd09aabea46e17b74968d54d4d34a6f1cc [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.ui;
/**
* Contains all of the command line switches that are specific to the ui/ portion of Chromium on
* Android.
*/
public abstract class UiSwitches {
// Enables the screenshot mode, which disables certain UI elements (e.g. dialogs) to facilitate
// more easily scripting screenshots of web content.
public static final String ENABLE_SCREENSHOT_UI_MODE = "enable-screenshot-ui-mode";
// Prevent instantiation.
private UiSwitches() {}
}