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

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

Issue 1956393002: Add a feature flag for enabling transparent doodle request. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@transparent-doodle
Patch Set: Merge with master 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
67 const base::Feature kNTPFakeOmniboxTextFeature { 71 const base::Feature kNTPFakeOmniboxTextFeature {
68 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT 72 "NTPFakeOmniboxText", base::FEATURE_DISABLED_BY_DEFAULT
69 }; 73 };
70 74
71 const base::Feature kPhysicalWebFeature { 75 const base::Feature kPhysicalWebFeature {
72 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT 76 "PhysicalWeb", base::FEATURE_ENABLED_BY_DEFAULT
73 }; 77 };
74 78
75 const base::Feature kSystemDownloadManager { 79 const base::Feature kSystemDownloadManager {
76 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT 80 "SystemDownloadManager", base::FEATURE_ENABLED_BY_DEFAULT
(...skipping 11 matching lines...) Expand all
88 NOTREACHED(); 92 NOTREACHED();
89 return false; 93 return false;
90 } 94 }
91 95
92 bool RegisterChromeFeatureListJni(JNIEnv* env) { 96 bool RegisterChromeFeatureListJni(JNIEnv* env) {
93 return RegisterNativesImpl(env); 97 return RegisterNativesImpl(env);
94 } 98 }
95 99
96 } // namespace android 100 } // namespace android
97 } // namespace chrome 101 } // 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