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

Side by Side Diff: chrome/browser/about_flags.cc

Issue 2816403002: test all
Patch Set: fix sharedworker 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
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/about_flags.h" 5 #include "chrome/browser/about_flags.h"
6 6
7 #include <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 2651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2662 FEATURE_VALUE_TYPE(chrome::android::kCustomFeedbackUi)}, 2662 FEATURE_VALUE_TYPE(chrome::android::kCustomFeedbackUi)},
2663 #endif // OS_ANDROID 2663 #endif // OS_ANDROID
2664 2664
2665 {"enable-resource-prefetch", flag_descriptions::kSpeculativePrefetchName, 2665 {"enable-resource-prefetch", flag_descriptions::kSpeculativePrefetchName,
2666 flag_descriptions::kSpeculativePrefetchDescription, kOsAll, 2666 flag_descriptions::kSpeculativePrefetchDescription, kOsAll,
2667 FEATURE_WITH_PARAMS_VALUE_TYPE( 2667 FEATURE_WITH_PARAMS_VALUE_TYPE(
2668 predictors::kSpeculativeResourcePrefetchingFeature, 2668 predictors::kSpeculativeResourcePrefetchingFeature,
2669 kSpeculativeResourcePrefetchingFeatureVariations, 2669 kSpeculativeResourcePrefetchingFeatureVariations,
2670 "SpeculativeResourcePrefetchingValidation")}, 2670 "SpeculativeResourcePrefetchingValidation")},
2671 2671
2672 {"enable-off-main-thread-fetch", flag_descriptions::kOffMainThreadFetchName,
2673 flag_descriptions::kOffMainThreadFetchDescription, kOsAll,
2674 FEATURE_VALUE_TYPE(features::kOffMainThreadFetch)},
2675
2672 #if defined(OS_MACOSX) 2676 #if defined(OS_MACOSX)
2673 {"tab-strip-keyboard-focus", flag_descriptions::kTabStripKeyboardFocusName, 2677 {"tab-strip-keyboard-focus", flag_descriptions::kTabStripKeyboardFocusName,
2674 flag_descriptions::kTabStripKeyboardFocusDescription, kOsMac, 2678 flag_descriptions::kTabStripKeyboardFocusDescription, kOsMac,
2675 FEATURE_VALUE_TYPE(features::kTabStripKeyboardFocus)}, 2679 FEATURE_VALUE_TYPE(features::kTabStripKeyboardFocus)},
2676 #endif 2680 #endif
2677 2681
2678 #if defined(OS_CHROMEOS) 2682 #if defined(OS_CHROMEOS)
2679 {"enable-chromevox-arc-support", 2683 {"enable-chromevox-arc-support",
2680 flag_descriptions::kEnableChromevoxArcSupportName, 2684 flag_descriptions::kEnableChromevoxArcSupportName,
2681 flag_descriptions::kEnableChromevoxArcSupportDescription, kOsCrOS, 2685 flag_descriptions::kEnableChromevoxArcSupportDescription, kOsCrOS,
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
2956 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2960 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2957 2961
2958 const FeatureEntry* GetFeatureEntries(size_t* count) { 2962 const FeatureEntry* GetFeatureEntries(size_t* count) {
2959 *count = arraysize(kFeatureEntries); 2963 *count = arraysize(kFeatureEntries);
2960 return kFeatureEntries; 2964 return kFeatureEntries;
2961 } 2965 }
2962 2966
2963 } // namespace testing 2967 } // namespace testing
2964 2968
2965 } // namespace about_flags 2969 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/flag_descriptions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698