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

Side by Side Diff: chrome/app/chrome_main_delegate.cc

Issue 16320010: Use a direct include of strings headers in chrome/app/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/app/breakpad_win.cc ('k') | chrome/app/client_util.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/app/chrome_main_delegate.h" 5 #include "chrome/app/chrome_main_delegate.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/metrics/stats_counters.h" 10 #include "base/metrics/stats_counters.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/process_util.h" 12 #include "base/process_util.h"
13 #include "base/stringprintf.h" 13 #include "base/strings/stringprintf.h"
14 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
15 #include "build/build_config.h" 15 #include "build/build_config.h"
16 #include "chrome/browser/chrome_content_browser_client.h" 16 #include "chrome/browser/chrome_content_browser_client.h"
17 #include "chrome/browser/defaults.h" 17 #include "chrome/browser/defaults.h"
18 #include "chrome/browser/diagnostics/diagnostics_main.h" 18 #include "chrome/browser/diagnostics/diagnostics_main.h"
19 #include "chrome/browser/policy/policy_path_parser.h" 19 #include "chrome/browser/policy/policy_path_parser.h"
20 #include "chrome/common/chrome_constants.h" 20 #include "chrome/common/chrome_constants.h"
21 #include "chrome/common/chrome_content_client.h" 21 #include "chrome/common/chrome_content_client.h"
22 #include "chrome/common/chrome_paths.h" 22 #include "chrome/common/chrome_paths.h"
23 #include "chrome/common/chrome_paths_internal.h" 23 #include "chrome/common/chrome_paths_internal.h"
24 #include "chrome/common/chrome_switches.h" 24 #include "chrome/common/chrome_switches.h"
25 #include "chrome/common/chrome_version_info.h" 25 #include "chrome/common/chrome_version_info.h"
26 #include "chrome/common/logging_chrome.h" 26 #include "chrome/common/logging_chrome.h"
27 #include "chrome/common/profiling.h" 27 #include "chrome/common/profiling.h"
28 #include "chrome/common/startup_metric_utils.h" 28 #include "chrome/common/startup_metric_utils.h"
29 #include "chrome/common/url_constants.h" 29 #include "chrome/common/url_constants.h"
30 #include "chrome/plugin/chrome_content_plugin_client.h" 30 #include "chrome/plugin/chrome_content_plugin_client.h"
31 #include "chrome/renderer/chrome_content_renderer_client.h" 31 #include "chrome/renderer/chrome_content_renderer_client.h"
32 #include "chrome/utility/chrome_content_utility_client.h" 32 #include "chrome/utility/chrome_content_utility_client.h"
33 #include "content/public/common/content_client.h" 33 #include "content/public/common/content_client.h"
34 #include "content/public/common/content_paths.h" 34 #include "content/public/common/content_paths.h"
35 #include "ui/base/ui_base_switches.h" 35 #include "ui/base/ui_base_switches.h"
36 36
37 #if defined(OS_WIN) 37 #if defined(OS_WIN)
38 #include <algorithm> 38 #include <algorithm>
39 #include <atlbase.h> 39 #include <atlbase.h>
40 #include <malloc.h> 40 #include <malloc.h>
41 #include "base/string_util.h" 41 #include "base/strings/string_util.h"
42 #include "sandbox/win/src/sandbox.h" 42 #include "sandbox/win/src/sandbox.h"
43 #include "tools/memory_watcher/memory_watcher.h" 43 #include "tools/memory_watcher/memory_watcher.h"
44 #include "ui/base/resource/resource_bundle_win.h" 44 #include "ui/base/resource/resource_bundle_win.h"
45 #endif 45 #endif
46 46
47 #if defined(OS_MACOSX) 47 #if defined(OS_MACOSX)
48 #include "base/mac/mac_util.h" 48 #include "base/mac/mac_util.h"
49 #include "base/mac/os_crash_dumps.h" 49 #include "base/mac/os_crash_dumps.h"
50 #include "chrome/app/breakpad_mac.h" 50 #include "chrome/app/breakpad_mac.h"
51 #include "chrome/app/chrome_main_mac.h" 51 #include "chrome/app/chrome_main_mac.h"
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 713
714 content::ContentRendererClient* 714 content::ContentRendererClient*
715 ChromeMainDelegate::CreateContentRendererClient() { 715 ChromeMainDelegate::CreateContentRendererClient() {
716 return &g_chrome_content_renderer_client.Get(); 716 return &g_chrome_content_renderer_client.Get();
717 } 717 }
718 718
719 content::ContentUtilityClient* 719 content::ContentUtilityClient*
720 ChromeMainDelegate::CreateContentUtilityClient() { 720 ChromeMainDelegate::CreateContentUtilityClient() {
721 return &g_chrome_content_utility_client.Get(); 721 return &g_chrome_content_utility_client.Get();
722 } 722 }
OLDNEW
« no previous file with comments | « chrome/app/breakpad_win.cc ('k') | chrome/app/client_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698