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

Side by Side Diff: chrome/browser/android/chrome_feature_list.cc

Issue 1966203002: Use the NTP-MD flag for transparent doodle requests. (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
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | chrome/browser/android/logo_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "chrome/browser/android/chrome_feature_list.h" 5 #include "chrome/browser/android/chrome_feature_list.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 }; 57 };
58 58
59 const base::Feature kNTPSnippetsFeature { 59 const base::Feature kNTPSnippetsFeature {
60 "NTPSnippets", base::FEATURE_DISABLED_BY_DEFAULT 60 "NTPSnippets", base::FEATURE_DISABLED_BY_DEFAULT
61 }; 61 };
62 62
63 const base::Feature kNTPToolbarFeature { 63 const base::Feature kNTPToolbarFeature {
64 "NTPToolbar", base::FEATURE_ENABLED_BY_DEFAULT 64 "NTPToolbar", base::FEATURE_ENABLED_BY_DEFAULT
65 }; 65 };
66 66
67 const base::Feature kNTPTransparentDoodle {
68 "NTPTransparentDoodle", base::FEATURE_DISABLED_BY_DEFAULT
69 };
70
71 const base::Feature kNTPFakeOmniboxTextFeature { 67 const base::Feature kNTPFakeOmniboxTextFeature {
72 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT 68 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT
73 }; 69 };
74 70
75 const base::Feature kPhysicalWebFeature { 71 const base::Feature kPhysicalWebFeature {
76 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT 72 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT
77 }; 73 };
78 74
79 const base::Feature kSystemDownloadManager { 75 const base::Feature kSystemDownloadManager {
80 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT 76 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT
(...skipping 11 matching lines...) Expand all
92 NOTREACHED(); 88 NOTREACHED();
93 return false; 89 return false;
94 } 90 }
95 91
96 bool RegisterChromeFeatureListJni(JNIEnv* env) { 92 bool RegisterChromeFeatureListJni(JNIEnv* env) {
97 return RegisterNativesImpl(env); 93 return RegisterNativesImpl(env);
98 } 94 }
99 95
100 } // namespace android 96 } // namespace android
101 } // namespace chrome 97 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/android/chrome_feature_list.h ('k') | chrome/browser/android/logo_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698