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

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

Issue 2781323004: Create a new Data Saver settings page that adds the site breakdown (Closed)
Patch Set: sclittle comments Created 3 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 &kAndroidPaymentAppsFilter, 50 &kAndroidPaymentAppsFilter,
51 &kCCTExternalLinkHandling, 51 &kCCTExternalLinkHandling,
52 &kCCTPostMessageAPI, 52 &kCCTPostMessageAPI,
53 &kChromeHomeFeature, 53 &kChromeHomeFeature,
54 &kContentSuggestionsSettings, 54 &kContentSuggestionsSettings,
55 &kContextualSearchSingleActions, 55 &kContextualSearchSingleActions,
56 &kContextualSearchUrlActions, 56 &kContextualSearchUrlActions,
57 &kCustomContextMenu, 57 &kCustomContextMenu,
58 &kCustomFeedbackUi, 58 &kCustomFeedbackUi,
59 &data_reduction_proxy::features::kDataReductionMainMenu, 59 &data_reduction_proxy::features::kDataReductionMainMenu,
60 &data_reduction_proxy::features::kDataReductionSiteBreakdown,
60 &kImportantSitesInCBD, 61 &kImportantSitesInCBD,
61 &kImprovedA2HS, 62 &kImprovedA2HS,
62 &kNewPhotoPicker, 63 &kNewPhotoPicker,
63 &kNoCreditCardAbort, 64 &kNoCreditCardAbort,
64 &kNTPCondensedLayoutFeature, 65 &kNTPCondensedLayoutFeature,
65 &kNTPCondensedTileLayoutFeature, 66 &kNTPCondensedTileLayoutFeature,
66 &kNTPLaunchAfterInactivity, 67 &kNTPLaunchAfterInactivity,
67 &kNTPOfflinePagesFeature, 68 &kNTPOfflinePagesFeature,
68 &NTPShowGoogleGInOmniboxFeature, 69 &NTPShowGoogleGInOmniboxFeature,
69 &kPhysicalWebFeature, 70 &kPhysicalWebFeature,
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name, 258 return base::GetFieldTrialParamByFeatureAsBool(*feature, param_name,
258 jdefault_value); 259 jdefault_value);
259 } 260 }
260 261
261 bool RegisterChromeFeatureListJni(JNIEnv* env) { 262 bool RegisterChromeFeatureListJni(JNIEnv* env) {
262 return RegisterNativesImpl(env); 263 return RegisterNativesImpl(env);
263 } 264 }
264 265
265 } // namespace android 266 } // namespace android
266 } // namespace chrome 267 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698