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

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

Issue 2070153002: Add an experimental flag for offlining. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove copy pasted desription. Created 4 years, 6 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/about_flags.cc ('k') | components/offline_pages/offline_page_feature.h » ('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 21 matching lines...) Expand all
32 &kImportantSitesInCBD, 32 &kImportantSitesInCBD,
33 &kMediaStyleNotification, 33 &kMediaStyleNotification,
34 &kNTPFakeOmniboxTextFeature, 34 &kNTPFakeOmniboxTextFeature,
35 &kNTPMaterialDesign, 35 &kNTPMaterialDesign,
36 &kNTPOfflinePagesFeature, 36 &kNTPOfflinePagesFeature,
37 &kNTPSnippetsFeature, 37 &kNTPSnippetsFeature,
38 &kNTPToolbarFeature, 38 &kNTPToolbarFeature,
39 &kPhysicalWebFeature, 39 &kPhysicalWebFeature,
40 &kSystemDownloadManager, 40 &kSystemDownloadManager,
41 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 41 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
42 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
42 }; 43 };
43 44
44 } // namespace 45 } // namespace
45 46
46 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", 47 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
47 base::FEATURE_DISABLED_BY_DEFAULT}; 48 base::FEATURE_DISABLED_BY_DEFAULT};
48 49
49 const base::Feature kMediaStyleNotification { 50 const base::Feature kMediaStyleNotification {
50 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT 51 "MediaStyleNotification", base::FEATURE_ENABLED_BY_DEFAULT
51 }; 52 };
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 NOTREACHED(); 90 NOTREACHED();
90 return false; 91 return false;
91 } 92 }
92 93
93 bool RegisterChromeFeatureListJni(JNIEnv* env) { 94 bool RegisterChromeFeatureListJni(JNIEnv* env) {
94 return RegisterNativesImpl(env); 95 return RegisterNativesImpl(env);
95 } 96 }
96 97
97 } // namespace android 98 } // namespace android
98 } // namespace chrome 99 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | components/offline_pages/offline_page_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698