| Index: ui/android/java/src/org/chromium/ui/display/DisplaySwitches.java
|
| diff --git a/ui/android/java/src/org/chromium/ui/display/DisplaySwitches.java b/ui/android/java/src/org/chromium/ui/display/DisplaySwitches.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c64bfaaf036408285e45cd40cb614522fb2d0bac
|
| --- /dev/null
|
| +++ b/ui/android/java/src/org/chromium/ui/display/DisplaySwitches.java
|
| @@ -0,0 +1,16 @@
|
| +// Copyright 2016 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.display;
|
| +
|
| +/**
|
| + * Contains all of the command line switches that are specific to the display.
|
| + */
|
| +public abstract class DisplaySwitches {
|
| + // Native switch - display_switches::kForceDeviceScaleFactor
|
| + public static final String FORCE_DEVICE_SCALE_FACTOR = "force-device-scale-factor";
|
| +
|
| + // Prevent instantiation.
|
| + private DisplaySwitches() {}
|
| +}
|
|
|