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

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

Issue 2028043002: tracing: restructure to the components/tracing folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/browser_shutdown.cc » ('j') | components/tracing/OWNERS » ('J')
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "components/ntp_tiles/switches.h" 47 #include "components/ntp_tiles/switches.h"
48 #include "components/offline_pages/offline_page_feature.h" 48 #include "components/offline_pages/offline_page_feature.h"
49 #include "components/omnibox/browser/omnibox_switches.h" 49 #include "components/omnibox/browser/omnibox_switches.h"
50 #include "components/password_manager/core/common/password_manager_features.h" 50 #include "components/password_manager/core/common/password_manager_features.h"
51 #include "components/proximity_auth/switches.h" 51 #include "components/proximity_auth/switches.h"
52 #include "components/quirks/switches.h" 52 #include "components/quirks/switches.h"
53 #include "components/search/search_switches.h" 53 #include "components/search/search_switches.h"
54 #include "components/security_state/switches.h" 54 #include "components/security_state/switches.h"
55 #include "components/signin/core/common/signin_switches.h" 55 #include "components/signin/core/common/signin_switches.h"
56 #include "components/sync_driver/sync_driver_switches.h" 56 #include "components/sync_driver/sync_driver_switches.h"
57 #include "components/tracing/tracing_switches.h" 57 #include "components/tracing/common/tracing_switches.h"
58 #include "components/translate/core/browser/translate_prefs.h" 58 #include "components/translate/core/browser/translate_prefs.h"
59 #include "components/version_info/version_info.h" 59 #include "components/version_info/version_info.h"
60 #include "content/public/browser/user_metrics.h" 60 #include "content/public/browser/user_metrics.h"
61 #include "content/public/common/content_features.h" 61 #include "content/public/common/content_features.h"
62 #include "content/public/common/content_switches.h" 62 #include "content/public/common/content_switches.h"
63 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h" 63 #include "content/public/common/feature_h264_with_openh264_ffmpeg.h"
64 #include "content/public/common/features.h" 64 #include "content/public/common/features.h"
65 #include "gin/public/gin_features.h" 65 #include "gin/public/gin_features.h"
66 #include "grit/components_strings.h" 66 #include "grit/components_strings.h"
67 #include "media/base/media_switches.h" 67 #include "media/base/media_switches.h"
(...skipping 2018 matching lines...) Expand 10 before | Expand all | Expand 10 after
2086 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2086 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2087 2087
2088 const FeatureEntry* GetFeatureEntries(size_t* count) { 2088 const FeatureEntry* GetFeatureEntries(size_t* count) {
2089 *count = arraysize(kFeatureEntries); 2089 *count = arraysize(kFeatureEntries);
2090 return kFeatureEntries; 2090 return kFeatureEntries;
2091 } 2091 }
2092 2092
2093 } // namespace testing 2093 } // namespace testing
2094 2094
2095 } // namespace about_flags 2095 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_shutdown.cc » ('j') | components/tracing/OWNERS » ('J')

Powered by Google App Engine
This is Rietveld 408576698