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

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

Issue 468233004: Cleanup: Another round of removing unneeded grit #includes in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac, undo ui_localizer.mm Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.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>
(...skipping 12 matching lines...) Expand all
23 #include "chrome/browser/flags_storage.h" 23 #include "chrome/browser/flags_storage.h"
24 #include "chrome/common/chrome_content_client.h" 24 #include "chrome/common/chrome_content_client.h"
25 #include "chrome/common/chrome_switches.h" 25 #include "chrome/common/chrome_switches.h"
26 #include "components/autofill/core/common/autofill_switches.h" 26 #include "components/autofill/core/common/autofill_switches.h"
27 #include "components/cloud_devices/common/cloud_devices_switches.h" 27 #include "components/cloud_devices/common/cloud_devices_switches.h"
28 #include "components/metrics/metrics_hashes.h" 28 #include "components/metrics/metrics_hashes.h"
29 #include "components/nacl/common/nacl_switches.h" 29 #include "components/nacl/common/nacl_switches.h"
30 #include "components/search/search_switches.h" 30 #include "components/search/search_switches.h"
31 #include "content/public/browser/user_metrics.h" 31 #include "content/public/browser/user_metrics.h"
32 #include "extensions/common/switches.h" 32 #include "extensions/common/switches.h"
33 #include "grit/chromium_strings.h"
34 #include "grit/generated_resources.h" 33 #include "grit/generated_resources.h"
35 #include "grit/google_chrome_strings.h"
36 #include "media/base/media_switches.h" 34 #include "media/base/media_switches.h"
37 #include "ui/base/l10n/l10n_util.h" 35 #include "ui/base/l10n/l10n_util.h"
38 #include "ui/base/ui_base_switches.h" 36 #include "ui/base/ui_base_switches.h"
39 #include "ui/display/display_switches.h" 37 #include "ui/display/display_switches.h"
40 #include "ui/events/event_switches.h" 38 #include "ui/events/event_switches.h"
41 #include "ui/gfx/switches.h" 39 #include "ui/gfx/switches.h"
42 #include "ui/gl/gl_switches.h" 40 #include "ui/gl/gl_switches.h"
43 #include "ui/keyboard/keyboard_switches.h" 41 #include "ui/keyboard/keyboard_switches.h"
44 #include "ui/native_theme/native_theme_switches.h" 42 #include "ui/native_theme/native_theme_switches.h"
45 #include "ui/views/views_switches.h" 43 #include "ui/views/views_switches.h"
(...skipping 2465 matching lines...) Expand 10 before | Expand all | Expand 10 after
2511 } 2509 }
2512 2510
2513 const Experiment* GetExperiments(size_t* count) { 2511 const Experiment* GetExperiments(size_t* count) {
2514 *count = num_experiments; 2512 *count = num_experiments;
2515 return experiments; 2513 return experiments;
2516 } 2514 }
2517 2515
2518 } // namespace testing 2516 } // namespace testing
2519 2517
2520 } // namespace about_flags 2518 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698