OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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.chrome; |
| 6 |
| 7 /** |
| 8 * Contains all of the command line switches that are specific to the chrome/ |
| 9 * portion of Chromium on Android. |
| 10 */ |
| 11 public abstract class ChromeSwitches { |
| 12 // Enables the new Website Settings dialog, which replaces the old one. |
| 13 // TODO(sashab): Once the new WebsiteSettingsPopup is ready to launch, |
| 14 // remove this flag and delete WebsiteSettingsLegacyPopup and all it's |
| 15 // dependencies. |
| 16 public static final String ENABLE_NEW_WEBSITE_SETTINGS = "enable-new-website
-settings"; |
| 17 |
| 18 // Prevent instantiation. |
| 19 private ChromeSwitches() {} |
| 20 } |
OLD | NEW |