| 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 | |
| 20 namespace base { | 14 namespace base { |
| 21 class Thread; | 15 class Thread; |
| 22 } | 16 } |
| 23 | 17 |
| 24 namespace net { | 18 namespace net { |
| 25 class NetLog; | 19 class NetLog; |
| 26 } | 20 } |
| 27 | 21 |
| 28 namespace content { | 22 namespace content { |
| 29 | 23 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 41 #if defined(ENABLE_PLUGINS) | 35 #if defined(ENABLE_PLUGINS) |
| 42 std::unique_ptr<ShellPluginServiceFilter> plugin_service_filter_; | 36 std::unique_ptr<ShellPluginServiceFilter> plugin_service_filter_; |
| 43 #endif | 37 #endif |
| 44 | 38 |
| 45 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserMainParts); | 39 DISALLOW_COPY_AND_ASSIGN(LayoutTestBrowserMainParts); |
| 46 }; | 40 }; |
| 47 | 41 |
| 48 } // namespace content | 42 } // namespace content |
| 49 | 43 |
| 50 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ | 44 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BROWSER_MAIN_PARTS_H_ |
| OLD | NEW |