OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SHELL_BROWSER_MAIN_PARTS_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
6 #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_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/public/browser/browser_main_parts.h" | 12 #include "content/public/browser/browser_main_parts.h" |
13 #include "content/public/common/main_function_params.h" | 13 #include "content/public/common/main_function_params.h" |
14 #include "content/shell/browser/shell_browser_context.h" | 14 #include "content/shell/browser/shell_browser_context.h" |
15 | 15 |
16 #if defined(OS_ANDROID) | |
17 namespace breakpad { | |
18 class CrashDumpManager; | |
19 } | |
20 #endif | |
21 | |
22 namespace base { | 16 namespace base { |
23 class Thread; | 17 class Thread; |
24 } | 18 } |
25 | 19 |
26 namespace devtools_http_handler { | 20 namespace devtools_http_handler { |
27 class DevToolsHttpHandler; | 21 class DevToolsHttpHandler; |
28 } | 22 } |
29 | 23 |
30 namespace net { | 24 namespace net { |
31 class NetLog; | 25 class NetLog; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 virtual void InitializeMessageLoopContext(); | 60 virtual void InitializeMessageLoopContext(); |
67 | 61 |
68 void set_browser_context(ShellBrowserContext* context) { | 62 void set_browser_context(ShellBrowserContext* context) { |
69 browser_context_.reset(context); | 63 browser_context_.reset(context); |
70 } | 64 } |
71 void set_off_the_record_browser_context(ShellBrowserContext* context) { | 65 void set_off_the_record_browser_context(ShellBrowserContext* context) { |
72 off_the_record_browser_context_.reset(context); | 66 off_the_record_browser_context_.reset(context); |
73 } | 67 } |
74 | 68 |
75 private: | 69 private: |
76 #if defined(OS_ANDROID) | |
77 std::unique_ptr<breakpad::CrashDumpManager> crash_dump_manager_; | |
78 #endif | |
79 std::unique_ptr<net::NetLog> net_log_; | 70 std::unique_ptr<net::NetLog> net_log_; |
80 std::unique_ptr<ShellBrowserContext> browser_context_; | 71 std::unique_ptr<ShellBrowserContext> browser_context_; |
81 std::unique_ptr<ShellBrowserContext> off_the_record_browser_context_; | 72 std::unique_ptr<ShellBrowserContext> off_the_record_browser_context_; |
82 | 73 |
83 // For running content_browsertests. | 74 // For running content_browsertests. |
84 const MainFunctionParams parameters_; | 75 const MainFunctionParams parameters_; |
85 bool run_message_loop_; | 76 bool run_message_loop_; |
86 | 77 |
87 std::unique_ptr<devtools_http_handler::DevToolsHttpHandler> | 78 std::unique_ptr<devtools_http_handler::DevToolsHttpHandler> |
88 devtools_http_handler_; | 79 devtools_http_handler_; |
89 | 80 |
90 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 81 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
91 }; | 82 }; |
92 | 83 |
93 } // namespace content | 84 } // namespace content |
94 | 85 |
95 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 86 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
OLD | NEW |