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 "content/shell/app/shell_main_delegate.h" | 5 #include "content/shell/app/shell_main_delegate.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/cpu.h" | 9 #include "base/cpu.h" |
10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/lazy_instance.h" | 12 #include "base/lazy_instance.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
| 15 #include "base/platform_file.h" |
15 #include "cc/base/switches.h" | 16 #include "cc/base/switches.h" |
16 #include "content/public/browser/browser_main_runner.h" | 17 #include "content/public/browser/browser_main_runner.h" |
17 #include "content/public/common/content_switches.h" | 18 #include "content/public/common/content_switches.h" |
18 #include "content/public/common/url_constants.h" | 19 #include "content/public/common/url_constants.h" |
19 #include "content/public/test/layouttest_support.h" | 20 #include "content/public/test/layouttest_support.h" |
20 #include "content/shell/app/shell_breakpad_client.h" | 21 #include "content/shell/app/shell_breakpad_client.h" |
21 #include "content/shell/app/webkit_test_platform_support.h" | 22 #include "content/shell/app/webkit_test_platform_support.h" |
22 #include "content/shell/browser/shell_browser_main.h" | 23 #include "content/shell/browser/shell_browser_main.h" |
23 #include "content/shell/browser/shell_content_browser_client.h" | 24 #include "content/shell/browser/shell_content_browser_client.h" |
24 #include "content/shell/common/shell_switches.h" | 25 #include "content/shell/common/shell_switches.h" |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 browser_client_.reset(new ShellContentBrowserClient); | 295 browser_client_.reset(new ShellContentBrowserClient); |
295 return browser_client_.get(); | 296 return browser_client_.get(); |
296 } | 297 } |
297 | 298 |
298 ContentRendererClient* ShellMainDelegate::CreateContentRendererClient() { | 299 ContentRendererClient* ShellMainDelegate::CreateContentRendererClient() { |
299 renderer_client_.reset(new ShellContentRendererClient); | 300 renderer_client_.reset(new ShellContentRendererClient); |
300 return renderer_client_.get(); | 301 return renderer_client_.get(); |
301 } | 302 } |
302 | 303 |
303 } // namespace content | 304 } // namespace content |
OLD | NEW |