| 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 namespace base { |
| 17 class Thread; |
| 18 } |
| 19 |
| 16 #if defined(OS_ANDROID) | 20 #if defined(OS_ANDROID) |
| 17 namespace breakpad { | 21 namespace breakpad { |
| 18 class CrashDumpManager; | 22 class CrashDumpObserver; |
| 19 } | 23 } |
| 20 #endif | 24 #endif |
| 21 | 25 |
| 22 namespace net { | 26 namespace net { |
| 23 class NetLog; | 27 class NetLog; |
| 24 } | 28 } |
| 25 | 29 |
| 26 namespace content { | 30 namespace content { |
| 27 | 31 |
| 28 class ShellBrowserMainParts : public BrowserMainParts { | 32 class ShellBrowserMainParts : public BrowserMainParts { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 54 virtual void InitializeMessageLoopContext(); | 58 virtual void InitializeMessageLoopContext(); |
| 55 | 59 |
| 56 void set_browser_context(ShellBrowserContext* context) { | 60 void set_browser_context(ShellBrowserContext* context) { |
| 57 browser_context_.reset(context); | 61 browser_context_.reset(context); |
| 58 } | 62 } |
| 59 void set_off_the_record_browser_context(ShellBrowserContext* context) { | 63 void set_off_the_record_browser_context(ShellBrowserContext* context) { |
| 60 off_the_record_browser_context_.reset(context); | 64 off_the_record_browser_context_.reset(context); |
| 61 } | 65 } |
| 62 | 66 |
| 63 private: | 67 private: |
| 64 #if defined(OS_ANDROID) | |
| 65 std::unique_ptr<breakpad::CrashDumpManager> crash_dump_manager_; | |
| 66 #endif | |
| 67 std::unique_ptr<net::NetLog> net_log_; | 68 std::unique_ptr<net::NetLog> net_log_; |
| 68 std::unique_ptr<ShellBrowserContext> browser_context_; | 69 std::unique_ptr<ShellBrowserContext> browser_context_; |
| 69 std::unique_ptr<ShellBrowserContext> off_the_record_browser_context_; | 70 std::unique_ptr<ShellBrowserContext> off_the_record_browser_context_; |
| 70 | 71 |
| 71 // For running content_browsertests. | 72 // For running content_browsertests. |
| 72 const MainFunctionParams parameters_; | 73 const MainFunctionParams parameters_; |
| 73 bool run_message_loop_; | 74 bool run_message_loop_; |
| 74 | 75 |
| 76 #if defined(OS_ANDROID) |
| 77 std::unique_ptr<breakpad::CrashDumpObserver> crash_dump_observer_; |
| 78 #endif |
| 79 |
| 75 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); | 80 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); |
| 76 }; | 81 }; |
| 77 | 82 |
| 78 } // namespace content | 83 } // namespace content |
| 79 | 84 |
| 80 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ | 85 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_MAIN_PARTS_H_ |
| OLD | NEW |