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

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

Issue 2068393002: Flag for Offline Page Sharing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve merge conflict Created 4 years, 5 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 28 matching lines...) Expand all
39 &kNTPOfflinePageSuggestionsFeature, 39 &kNTPOfflinePageSuggestionsFeature,
40 &kNTPSnippetsFeature, 40 &kNTPSnippetsFeature,
41 &kNTPToolbarFeature, 41 &kNTPToolbarFeature,
42 &kPhysicalWebFeature, 42 &kPhysicalWebFeature,
43 &kPhysicalWebIgnoreOtherClientsFeature, 43 &kPhysicalWebIgnoreOtherClientsFeature,
44 &kReadItLaterInMenu, 44 &kReadItLaterInMenu,
45 &kSystemDownloadManager, 45 &kSystemDownloadManager,
46 &kTabReparenting, 46 &kTabReparenting,
47 &offline_pages::kOfflinePagesBackgroundLoadingFeature, 47 &offline_pages::kOfflinePagesBackgroundLoadingFeature,
48 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421. 48 &offline_pages::kOfflinePagesCTFeature, // See crbug.com/620421.
49 &offline_pages::kOfflinePagesSharingFeature,
49 }; 50 };
50 51
51 } // namespace 52 } // namespace
52 53
53 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD", 54 const base::Feature kImportantSitesInCBD{"ImportantSitesInCBD",
54 base::FEATURE_DISABLED_BY_DEFAULT}; 55 base::FEATURE_DISABLED_BY_DEFAULT};
55 56
56 const base::Feature kNTPMaterialDesign{"NTPMaterialDesign", 57 const base::Feature kNTPMaterialDesign{"NTPMaterialDesign",
57 base::FEATURE_ENABLED_BY_DEFAULT}; 58 base::FEATURE_ENABLED_BY_DEFAULT};
58 59
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 NOTREACHED(); 103 NOTREACHED();
103 return false; 104 return false;
104 } 105 }
105 106
106 bool RegisterChromeFeatureListJni(JNIEnv* env) { 107 bool RegisterChromeFeatureListJni(JNIEnv* env) {
107 return RegisterNativesImpl(env); 108 return RegisterNativesImpl(env);
108 } 109 }
109 110
110 } // namespace android 111 } // namespace android
111 } // namespace chrome 112 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/android/offline_pages/offline_page_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698