OLD | NEW |
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/files/file_path.h" |
8 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
9 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
10 #include "base/metrics/stats_counters.h" | 11 #include "base/metrics/stats_counters.h" |
11 #include "base/path_service.h" | 12 #include "base/path_service.h" |
12 #include "base/process/memory.h" | 13 #include "base/process/memory.h" |
13 #include "base/process/process_handle.h" | 14 #include "base/process/process_handle.h" |
14 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
15 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
16 #include "build/build_config.h" | 17 #include "build/build_config.h" |
17 #include "chrome/browser/chrome_content_browser_client.h" | 18 #include "chrome/browser/chrome_content_browser_client.h" |
(...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
843 } | 844 } |
844 | 845 |
845 content::ContentUtilityClient* | 846 content::ContentUtilityClient* |
846 ChromeMainDelegate::CreateContentUtilityClient() { | 847 ChromeMainDelegate::CreateContentUtilityClient() { |
847 #if defined(CHROME_MULTIPLE_DLL_BROWSER) | 848 #if defined(CHROME_MULTIPLE_DLL_BROWSER) |
848 return NULL; | 849 return NULL; |
849 #else | 850 #else |
850 return &g_chrome_content_utility_client.Get(); | 851 return &g_chrome_content_utility_client.Get(); |
851 #endif | 852 #endif |
852 } | 853 } |
OLD | NEW |