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

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

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: update Created 4 years, 1 month 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 (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 29 matching lines...) Expand all
40 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc hes.h" 40 #include "components/data_reduction_proxy/core/common/data_reduction_proxy_switc hes.h"
41 #include "components/dom_distiller/core/dom_distiller_switches.h" 41 #include "components/dom_distiller/core/dom_distiller_switches.h"
42 #include "components/error_page/common/error_page_switches.h" 42 #include "components/error_page/common/error_page_switches.h"
43 #include "components/flags_ui/feature_entry_macros.h" 43 #include "components/flags_ui/feature_entry_macros.h"
44 #include "components/flags_ui/flags_storage.h" 44 #include "components/flags_ui/flags_storage.h"
45 #include "components/flags_ui/flags_ui_switches.h" 45 #include "components/flags_ui/flags_ui_switches.h"
46 #include "components/nacl/common/nacl_switches.h" 46 #include "components/nacl/common/nacl_switches.h"
47 #include "components/ntp_snippets/features.h" 47 #include "components/ntp_snippets/features.h"
48 #include "components/ntp_snippets/ntp_snippets_constants.h" 48 #include "components/ntp_snippets/ntp_snippets_constants.h"
49 #include "components/ntp_tiles/switches.h" 49 #include "components/ntp_tiles/switches.h"
50 #include "components/offline_pages/offline_page_feature.h" 50 #include "components/offline_pages/core/offline_page_feature.h"
51 #include "components/omnibox/browser/omnibox_switches.h" 51 #include "components/omnibox/browser/omnibox_switches.h"
52 #include "components/password_manager/core/common/password_manager_features.h" 52 #include "components/password_manager/core/common/password_manager_features.h"
53 #include "components/proximity_auth/switches.h" 53 #include "components/proximity_auth/switches.h"
54 #include "components/search/search_switches.h" 54 #include "components/search/search_switches.h"
55 #include "components/security_state/core/switches.h" 55 #include "components/security_state/core/switches.h"
56 #include "components/signin/core/common/signin_switches.h" 56 #include "components/signin/core/common/signin_switches.h"
57 #include "components/spellcheck/common/spellcheck_features.h" 57 #include "components/spellcheck/common/spellcheck_features.h"
58 #include "components/spellcheck/common/spellcheck_switches.h" 58 #include "components/spellcheck/common/spellcheck_switches.h"
59 #include "components/spellcheck/spellcheck_build_features.h" 59 #include "components/spellcheck/spellcheck_build_features.h"
60 #include "components/ssl_config/ssl_config_switches.h" 60 #include "components/ssl_config/ssl_config_switches.h"
(...skipping 2253 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2314 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2315 2315
2316 const FeatureEntry* GetFeatureEntries(size_t* count) { 2316 const FeatureEntry* GetFeatureEntries(size_t* count) {
2317 *count = arraysize(kFeatureEntries); 2317 *count = arraysize(kFeatureEntries);
2318 return kFeatureEntries; 2318 return kFeatureEntries;
2319 } 2319 }
2320 2320
2321 } // namespace testing 2321 } // namespace testing
2322 2322
2323 } // namespace about_flags 2323 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698