OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ | 5 #ifndef CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ |
6 #define CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ | 6 #define CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
11 #include "base/containers/hash_tables.h" | 11 #include "base/containers/hash_tables.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "base/process/process.h" | 16 #include "base/process/process.h" |
17 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "content/public/browser/render_process_host_observer.h" | 20 #include "content/public/browser/render_process_host_observer.h" |
21 #include "ui/shell_dialogs/select_file_dialog.h" | 21 #include "ui/shell_dialogs/select_file_dialog.h" |
22 | 22 |
23 namespace device { | |
24 class PowerSaveBlocker; | |
25 } // namespace device | |
26 | |
27 namespace content { | 23 namespace content { |
28 | 24 |
| 25 class PowerSaveBlocker; |
29 class WebContents; | 26 class WebContents; |
30 class WebRTCInternalsUIObserver; | 27 class WebRTCInternalsUIObserver; |
31 | 28 |
32 // This is a singleton class running in the browser UI thread. | 29 // This is a singleton class running in the browser UI thread. |
33 // It collects peer connection infomation from the renderers, | 30 // It collects peer connection infomation from the renderers, |
34 // forwards the data to WebRTCInternalsUIObserver and | 31 // forwards the data to WebRTCInternalsUIObserver and |
35 // sends data collecting commands to the renderers. | 32 // sends data collecting commands to the renderers. |
36 class CONTENT_EXPORT WebRTCInternals : public RenderProcessHostObserver, | 33 class CONTENT_EXPORT WebRTCInternals : public RenderProcessHostObserver, |
37 public ui::SelectFileDialog::Listener { | 34 public ui::SelectFileDialog::Listener { |
38 public: | 35 public: |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 base::FilePath audio_debug_recordings_file_path_; | 195 base::FilePath audio_debug_recordings_file_path_; |
199 | 196 |
200 // Diagnostic event log recording state. | 197 // Diagnostic event log recording state. |
201 bool event_log_recordings_; | 198 bool event_log_recordings_; |
202 bool selecting_event_log_; | 199 bool selecting_event_log_; |
203 base::FilePath event_log_recordings_file_path_; | 200 base::FilePath event_log_recordings_file_path_; |
204 | 201 |
205 // While |peer_connection_data_| is non-empty, hold an instance of | 202 // While |peer_connection_data_| is non-empty, hold an instance of |
206 // PowerSaveBlocker. This prevents the application from being suspended while | 203 // PowerSaveBlocker. This prevents the application from being suspended while |
207 // remoting. | 204 // remoting. |
208 std::unique_ptr<device::PowerSaveBlocker> power_save_blocker_; | 205 std::unique_ptr<PowerSaveBlocker> power_save_blocker_; |
209 | 206 |
210 // Set of render process hosts that |this| is registered as an observer on. | 207 // Set of render process hosts that |this| is registered as an observer on. |
211 base::hash_set<int> render_process_id_set_; | 208 base::hash_set<int> render_process_id_set_; |
212 | 209 |
213 // Used to bulk up updates that we send to javascript. | 210 // Used to bulk up updates that we send to javascript. |
214 // The class owns the value/dictionary and command name of an update. | 211 // The class owns the value/dictionary and command name of an update. |
215 // For each update, a PendingUpdate is stored in the |pending_updates_| queue | 212 // For each update, a PendingUpdate is stored in the |pending_updates_| queue |
216 // and deleted as soon as the update has been delivered. | 213 // and deleted as soon as the update has been delivered. |
217 // The class is moveble and not copyable to avoid copying while still allowing | 214 // The class is moveble and not copyable to avoid copying while still allowing |
218 // us to use an stl container without needing scoped_ptr or similar. | 215 // us to use an stl container without needing scoped_ptr or similar. |
(...skipping 19 matching lines...) Expand all Loading... |
238 std::queue<PendingUpdate> pending_updates_; | 235 std::queue<PendingUpdate> pending_updates_; |
239 const int aggregate_updates_ms_; | 236 const int aggregate_updates_ms_; |
240 | 237 |
241 // Weak factory for this object that we use for bulking up updates. | 238 // Weak factory for this object that we use for bulking up updates. |
242 base::WeakPtrFactory<WebRTCInternals> weak_factory_; | 239 base::WeakPtrFactory<WebRTCInternals> weak_factory_; |
243 }; | 240 }; |
244 | 241 |
245 } // namespace content | 242 } // namespace content |
246 | 243 |
247 #endif // CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ | 244 #endif // CONTENT_BROWSER_MEDIA_WEBRTC_WEBRTC_INTERNALS_H_ |
OLD | NEW |