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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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/about_flags.h ('k') | chrome/browser/about_flags_unittest.cc » ('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>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/feature_list.h" 15 #include "base/feature_list.h"
16 #include "base/i18n/base_i18n_switches.h" 16 #include "base/i18n/base_i18n_switches.h"
17 #include "base/macros.h"
17 #include "base/memory/singleton.h" 18 #include "base/memory/singleton.h"
18 #include "base/metrics/metrics_hashes.h" 19 #include "base/metrics/metrics_hashes.h"
19 #include "base/metrics/sparse_histogram.h" 20 #include "base/metrics/sparse_histogram.h"
20 #include "base/stl_util.h" 21 #include "base/stl_util.h"
21 #include "base/strings/string_number_conversions.h" 22 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/string_util.h" 23 #include "base/strings/string_util.h"
23 #include "base/strings/utf_string_conversions.h" 24 #include "base/strings/utf_string_conversions.h"
24 #include "base/values.h" 25 #include "base/values.h"
26 #include "build/build_config.h"
25 #include "cc/base/switches.h" 27 #include "cc/base/switches.h"
26 #include "chrome/common/channel_info.h" 28 #include "chrome/common/channel_info.h"
27 #include "chrome/common/chrome_content_client.h" 29 #include "chrome/common/chrome_content_client.h"
28 #include "chrome/common/chrome_switches.h" 30 #include "chrome/common/chrome_switches.h"
29 #include "chrome/grit/chromium_strings.h" 31 #include "chrome/grit/chromium_strings.h"
30 #include "chrome/grit/generated_resources.h" 32 #include "chrome/grit/generated_resources.h"
31 #include "chrome/grit/google_chrome_strings.h" 33 #include "chrome/grit/google_chrome_strings.h"
32 #include "components/autofill/core/common/autofill_switches.h" 34 #include "components/autofill/core/common/autofill_switches.h"
33 #include "components/browser_sync/common/browser_sync_switches.h" 35 #include "components/browser_sync/common/browser_sync_switches.h"
34 #include "components/cloud_devices/common/cloud_devices_switches.h" 36 #include "components/cloud_devices/common/cloud_devices_switches.h"
(...skipping 2258 matching lines...) Expand 10 before | Expand all | Expand 10 after
2293 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0; 2295 const base::HistogramBase::Sample kBadSwitchFormatHistogramId = 0;
2294 2296
2295 const FeatureEntry* GetFeatureEntries(size_t* count) { 2297 const FeatureEntry* GetFeatureEntries(size_t* count) {
2296 *count = arraysize(kFeatureEntries); 2298 *count = arraysize(kFeatureEntries);
2297 return kFeatureEntries; 2299 return kFeatureEntries;
2298 } 2300 }
2299 2301
2300 } // namespace testing 2302 } // namespace testing
2301 2303
2302 } // namespace about_flags 2304 } // namespace about_flags
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.h ('k') | chrome/browser/about_flags_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698