Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(476)

Unified Diff: chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java

Issue 516703002: Replaced the current WebsiteSettings dialog with a new PageInfo dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed "is_android" guard on permission strings. Could have #defined out the function that uses th… Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..c19e06197ae102009eef53c03b4ee4e732b3cc50
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/ChromeSwitches.java
@@ -0,0 +1,20 @@
+// Copyright 2014 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.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() {}
+}

Powered by Google App Engine
This is Rietveld 408576698