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

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

Issue 1892123003: Add components/network_session_configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/1945513002. Created 4 years, 7 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/BUILD.gn ('k') | chrome/browser/io_thread.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 25 matching lines...) Expand all
36 #include "components/autofill/core/common/autofill_switches.h" 36 #include "components/autofill/core/common/autofill_switches.h"
37 #include "components/browser_sync/common/browser_sync_switches.h" 37 #include "components/browser_sync/common/browser_sync_switches.h"
38 #include "components/cloud_devices/common/cloud_devices_switches.h" 38 #include "components/cloud_devices/common/cloud_devices_switches.h"
39 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc hes.h" 39 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc hes.h"
40 #include "components/dom_distiller/core/dom_distiller_switches.h" 40 #include "components/dom_distiller/core/dom_distiller_switches.h"
41 #include "components/error_page/common/error_page_switches.h" 41 #include "components/error_page/common/error_page_switches.h"
42 #include "components/flags_ui/feature_entry_macros.h" 42 #include "components/flags_ui/feature_entry_macros.h"
43 #include "components/flags_ui/flags_storage.h" 43 #include "components/flags_ui/flags_storage.h"
44 #include "components/flags_ui/flags_ui_switches.h" 44 #include "components/flags_ui/flags_ui_switches.h"
45 #include "components/nacl/common/nacl_switches.h" 45 #include "components/nacl/common/nacl_switches.h"
46 #include "components/network_session_configurator/switches.h"
46 #include "components/ntp_tiles/switches.h" 47 #include "components/ntp_tiles/switches.h"
47 #include "components/offline_pages/offline_page_feature.h" 48 #include "components/offline_pages/offline_page_feature.h"
48 #include "components/omnibox/browser/omnibox_switches.h" 49 #include "components/omnibox/browser/omnibox_switches.h"
49 #include "components/password_manager/core/common/password_manager_features.h" 50 #include "components/password_manager/core/common/password_manager_features.h"
50 #include "components/proximity_auth/switches.h" 51 #include "components/proximity_auth/switches.h"
51 #include "components/quirks/switches.h" 52 #include "components/quirks/switches.h"
52 #include "components/search/search_switches.h" 53 #include "components/search/search_switches.h"
53 #include "components/security_state/switches.h" 54 #include "components/security_state/switches.h"
54 #include "components/signin/core/common/signin_switches.h" 55 #include "components/signin/core/common/signin_switches.h"
55 #include "components/sync_driver/sync_driver_switches.h" 56 #include "components/sync_driver/sync_driver_switches.h"
(...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after
2086 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2087 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2087 2088
2088 const FeatureEntry* GetFeatureEntries(size_t* count) { 2089 const FeatureEntry* GetFeatureEntries(size_t* count) {
2089 *count = arraysize(kFeatureEntries); 2090 *count = arraysize(kFeatureEntries);
2090 return kFeatureEntries; 2091 return kFeatureEntries;
2091 } 2092 }
2092 2093
2093 } // namespace testing 2094 } // namespace testing
2094 2095
2095 } // namespace about_flags 2096 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/io_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698