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

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

Issue 1465363002: [Storage] Android - ManageSpace UI, Important Origins, and CBD Dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments, working Created 4 years, 8 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 #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 24 matching lines...) Expand all
35 &kNTPOfflinePagesFeature, 35 &kNTPOfflinePagesFeature,
36 &kNTPSnippetsFeature, 36 &kNTPSnippetsFeature,
37 &kNTPToolbarFeature, 37 &kNTPToolbarFeature,
38 &kPhysicalWebFeature, 38 &kPhysicalWebFeature,
39 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 39 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
40 }; 40 };
41 41
42 } // namespace 42 } // namespace
43 43
44 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", 44 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
45 base::FEATURE_DISABLED_BY_DEFAULT}; 45 base::FEATURE_ENABLED_BY_DEFAULT};
Theresa 2016/04/27 21:11:00 This is launching?
dmurph 2016/04/29 23:53:49 No, I just have this enabled for testing. Sorry!
46 46
47 const base::Feature kMediaStyleNotification { 47 const base::Feature kMediaStyleNotification {
48 "MediaStyleNotification", base::FEATURE_DISABLED_BY_DEFAULT 48 "MediaStyleNotification", base::FEATURE_DISABLED_BY_DEFAULT
49 }; 49 };
50 50
51 const base::Feature kNTPOfflinePagesFeature { 51 const base::Feature kNTPOfflinePagesFeature {
52 "NTPOfflinePages", base::FEATURE_DISABLED_BY_DEFAULT 52 "NTPOfflinePages", base::FEATURE_DISABLED_BY_DEFAULT
53 }; 53 };
54 54
55 const base::Feature kNTPSnippetsFeature { 55 const base::Feature kNTPSnippetsFeature {
(...skipping 28 matching lines...) Expand all
84 NOTREACHED(); 84 NOTREACHED();
85 return false; 85 return false;
86 } 86 }
87 87
88 bool RegisterChromeFeatureListJni(JNIEnv* env) { 88 bool RegisterChromeFeatureListJni(JNIEnv* env) {
89 return RegisterNativesImpl(env); 89 return RegisterNativesImpl(env);
90 } 90 }
91 91
92 } // namespace android 92 } // namespace android
93 } // namespace chrome 93 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698