Chromium Code Reviews| Index: chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java |
| diff --git a/chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java b/chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..856d8b80436569e7d5c8413a26cd97864c46d465 |
| --- /dev/null |
| +++ b/chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java |
| @@ -0,0 +1,20 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
|
Ted C
2014/10/07 17:48:06
2014
sashab
2014/10/07 22:58:24
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +package org.chromium.chrome; |
| + |
| +/** |
| + * Contains all of the command line switches that are specific to the chrome/ |
| + * portion of Chromium on Android. |
| + */ |
| +public abstract class ChromeSwitches { |
| + // Enables the new Website Settings dialog, which replaces the old one. |
| + // TODO(sashab): Once the new WebsiteSettingsPopup is ready to launch, |
| + // remove this flag and delete WebsiteSettingsLegacyPopup and all it's |
| + // dependencies. |
| + public static final String ENABLE_NEW_WEBSITE_SETTINGS = "enable-new-website-settings"; |
| + |
| + // Prevent instantiation. |
| + private ChromeSwitches() {} |
| +} |