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

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

Issue 1958233002: Reland of Update NTP to new material design spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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.annotations.JNINamespace; 7 import org.chromium.base.annotations.JNINamespace;
8 import org.chromium.base.annotations.MainDex; 8 import org.chromium.base.annotations.MainDex;
9 9
10 /** 10 /**
(...skipping 11 matching lines...) Expand all
22 * Note: Features queried through this API must be added to the array 22 * Note: Features queried through this API must be added to the array
23 * |kFeaturesExposedToJava| in chrome/browser/android/chrome_feature_list.cc 23 * |kFeaturesExposedToJava| in chrome/browser/android/chrome_feature_list.cc
24 * 24 *
25 * @param featureName The name of the feature to query. 25 * @param featureName The name of the feature to query.
26 * @return Whether the feature is enabled or not. 26 * @return Whether the feature is enabled or not.
27 */ 27 */
28 public static boolean isEnabled(String featureName) { 28 public static boolean isEnabled(String featureName) {
29 return nativeIsEnabled(featureName); 29 return nativeIsEnabled(featureName);
30 } 30 }
31 31
32 public static final String MEDIA_STYLE_NOTIFICATION = "MediaStyleNotificatio n";
33 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText";
34 public static final String NTP_MATERIAL_DESIGN = "NTPMaterialDesign";
32 public static final String NTP_SNIPPETS = "NTPSnippets"; 35 public static final String NTP_SNIPPETS = "NTPSnippets";
33 public static final String NTP_TOOLBAR = "NTPToolbar"; 36 public static final String NTP_TOOLBAR = "NTPToolbar";
34 public static final String NTP_FAKE_OMNIBOX_TEXT = "NTPFakeOmniboxText";
35 public static final String MEDIA_STYLE_NOTIFICATION = "MediaStyleNotificatio n";
36 37
37 private static native boolean nativeIsEnabled(String featureName); 38 private static native boolean nativeIsEnabled(String featureName);
38 } 39 }
OLDNEW
« no previous file with comments | « chrome/android/java/res/values/colors.xml ('k') | chrome/android/java/src/org/chromium/chrome/browser/ntp/NewTabPage.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698