| 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 CHROMECAST_BROWSER_CAST_BROWSER_MAIN_PARTS_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_BROWSER_MAIN_PARTS_H_ |
| 6 #define CHROMECAST_BROWSER_CAST_BROWSER_MAIN_PARTS_H_ | 6 #define CHROMECAST_BROWSER_CAST_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 "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.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 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class SingleThreadTaskRunner; | 16 class SingleThreadTaskRunner; |
| 17 class Thread; | 17 class Thread; |
| 18 } // namespace base | 18 } // namespace base |
| 19 | 19 |
| 20 #if defined(OS_ANDROID) |
| 21 namespace breakpad { |
| 22 class CrashDumpManager; |
| 23 } |
| 24 #endif |
| 25 |
| 20 namespace net { | 26 namespace net { |
| 21 class NetLog; | 27 class NetLog; |
| 22 } | 28 } |
| 23 | 29 |
| 24 namespace chromecast { | 30 namespace chromecast { |
| 25 class CastMemoryPressureMonitor; | 31 class CastMemoryPressureMonitor; |
| 26 | 32 |
| 27 namespace media { | 33 namespace media { |
| 28 class MediaPipelineBackendManager; | 34 class MediaPipelineBackendManager; |
| 29 class MediaResourceTracker; | 35 class MediaResourceTracker; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // Tracks usage of media resource by e.g. CMA pipeline, CDM. | 78 // Tracks usage of media resource by e.g. CMA pipeline, CDM. |
| 73 media::MediaResourceTracker* media_resource_tracker_; | 79 media::MediaResourceTracker* media_resource_tracker_; |
| 74 | 80 |
| 75 // Tracks all media pipeline backends. | 81 // Tracks all media pipeline backends. |
| 76 std::unique_ptr<media::MediaPipelineBackendManager> | 82 std::unique_ptr<media::MediaPipelineBackendManager> |
| 77 media_pipeline_backend_manager_; | 83 media_pipeline_backend_manager_; |
| 78 | 84 |
| 79 std::unique_ptr<CastMemoryPressureMonitor> memory_pressure_monitor_; | 85 std::unique_ptr<CastMemoryPressureMonitor> memory_pressure_monitor_; |
| 80 #endif | 86 #endif |
| 81 | 87 |
| 88 #if defined(OS_ANDROID) |
| 89 std::unique_ptr<breakpad::CrashDumpManager> crash_dump_manager_; |
| 90 #endif |
| 91 |
| 82 DISALLOW_COPY_AND_ASSIGN(CastBrowserMainParts); | 92 DISALLOW_COPY_AND_ASSIGN(CastBrowserMainParts); |
| 83 }; | 93 }; |
| 84 | 94 |
| 85 } // namespace shell | 95 } // namespace shell |
| 86 } // namespace chromecast | 96 } // namespace chromecast |
| 87 | 97 |
| 88 #endif // CHROMECAST_BROWSER_CAST_BROWSER_MAIN_PARTS_H_ | 98 #endif // CHROMECAST_BROWSER_CAST_BROWSER_MAIN_PARTS_H_ |
| OLD | NEW |