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

Side by Side Diff: chrome/android/java/src/org/chromium/chrome/browser/ChromeFeatureList.java

Issue 2853583002: 🏠 Add expand button and flag to enable it (Closed)
Patch Set: rebase Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.chrome.browser; 5 package org.chromium.chrome.browser;
6 6
7 import org.chromium.base.VisibleForTesting; 7 import org.chromium.base.VisibleForTesting;
8 import org.chromium.base.annotations.JNINamespace; 8 import org.chromium.base.annotations.JNINamespace;
9 import org.chromium.base.annotations.MainDex; 9 import org.chromium.base.annotations.MainDex;
10 import org.chromium.base.library_loader.LibraryLoader; 10 import org.chromium.base.library_loader.LibraryLoader;
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 143
144 // Alphabetical: 144 // Alphabetical:
145 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1"; 145 public static final String ANDROID_PAY_INTEGRATION_V1 = "AndroidPayIntegrati onV1";
146 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati onV2"; 146 public static final String ANDROID_PAY_INTEGRATION_V2 = "AndroidPayIntegrati onV2";
147 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps"; 147 public static final String ANDROID_PAYMENT_APPS = "AndroidPaymentApps";
148 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName"; 148 public static final String AUTOFILL_SCAN_CARDHOLDER_NAME = "AutofillScanCard holderName";
149 public static final String CCT_BACKGROUND_TAB = "CCTBackgroundTab"; 149 public static final String CCT_BACKGROUND_TAB = "CCTBackgroundTab";
150 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling"; 150 public static final String CCT_EXTERNAL_LINK_HANDLING = "CCTExternalLinkHand ling";
151 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI"; 151 public static final String CCT_POST_MESSAGE_API = "CCTPostMessageAPI";
152 public static final String CHROME_HOME = "ChromeHome"; 152 public static final String CHROME_HOME = "ChromeHome";
153 public static final String CHROME_HOME_EXPAND_BUTTON = "ChromeHomeExpandButt on";
153 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation"; 154 public static final String CONSISTENT_OMNIBOX_GEOLOCATION = "ConsistentOmnib oxGeolocation";
154 public static final String CONTENT_SUGGESTIONS_FAVICONS_FROM_NEW_SERVER = 155 public static final String CONTENT_SUGGESTIONS_FAVICONS_FROM_NEW_SERVER =
155 "ContentSuggestionsFaviconsFromNewServer"; 156 "ContentSuggestionsFaviconsFromNewServer";
156 public static final String CONTENT_SUGGESTIONS_NOTIFICATIONS = 157 public static final String CONTENT_SUGGESTIONS_NOTIFICATIONS =
157 "ContentSuggestionsNotifications"; 158 "ContentSuggestionsNotifications";
158 public static final String CONTENT_SUGGESTIONS_SETTINGS = "ContentSuggestion sSettings"; 159 public static final String CONTENT_SUGGESTIONS_SETTINGS = "ContentSuggestion sSettings";
159 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea rchSingleActions"; 160 public static final String CONTEXTUAL_SEARCH_SINGLE_ACTIONS = "ContextualSea rchSingleActions";
160 public static final String CONTEXTUAL_SEARCH_URL_ACTIONS = "ContextualSearch UrlActions"; 161 public static final String CONTEXTUAL_SEARCH_URL_ACTIONS = "ContextualSearch UrlActions";
161 public static final String COPYLESS_PASTE = "CopylessPaste"; 162 public static final String COPYLESS_PASTE = "CopylessPaste";
162 public static final String CUSTOM_CONTEXT_MENU = "CustomContextMenu"; 163 public static final String CUSTOM_CONTEXT_MENU = "CustomContextMenu";
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 private static native boolean nativeIsEnabled(String featureName); 197 private static native boolean nativeIsEnabled(String featureName);
197 private static native String nativeGetFieldTrialParamByFeature( 198 private static native String nativeGetFieldTrialParamByFeature(
198 String featureName, String paramName); 199 String featureName, String paramName);
199 private static native int nativeGetFieldTrialParamByFeatureAsInt( 200 private static native int nativeGetFieldTrialParamByFeatureAsInt(
200 String featureName, String paramName, int defaultValue); 201 String featureName, String paramName, int defaultValue);
201 private static native double nativeGetFieldTrialParamByFeatureAsDouble( 202 private static native double nativeGetFieldTrialParamByFeatureAsDouble(
202 String featureName, String paramName, double defaultValue); 203 String featureName, String paramName, double defaultValue);
203 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean( 204 private static native boolean nativeGetFieldTrialParamByFeatureAsBoolean(
204 String featureName, String paramName, boolean defaultValue); 205 String featureName, String paramName, boolean defaultValue);
205 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698