OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ |
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ | 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "content/shell/browser/shell_browser_main_parts.h" | 12 #include "content/shell/browser/shell_browser_main_parts.h" |
13 | 13 |
| 14 #if defined(OS_ANDROID) |
| 15 namespace breakpad { |
| 16 class CrashDumpManager; |
| 17 } |
| 18 #endif |
| 19 |
14 namespace base { | 20 namespace base { |
15 class Thread; | 21 class Thread; |
16 } | 22 } |
17 | 23 |
18 namespace net { | 24 namespace net { |
19 class NetLog; | 25 class NetLog; |
20 } | 26 } |
21 | 27 |
22 namespace content { | 28 namespace content { |
23 | 29 |
(...skipping 11 matching lines...) Expand all Loading... |
35 #if defined(ENABLE_PLUGINS) | 41 #if defined(ENABLE_PLUGINS) |
36 std::unique_ptr<ShellPluginServiceFilter> plugin_service_filter_; | 42 std::unique_ptr<ShellPluginServiceFilter> plugin_service_filter_; |
37 #endif | 43 #endif |
38 | 44 |
39 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserMainParts); | 45 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserMainParts); |
40 }; | 46 }; |
41 | 47 |
42 } // namespace content | 48 } // namespace content |
43 | 49 |
44 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ | 50 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ |
OLD | NEW |