| 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_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 int lid, const std::string& type, const std::string& value); | 52 int lid, const std::string& type, const std::string& value); |
| 53 void OnAddStats(int lid, const base::ListValue& value); | 53 void OnAddStats(int lid, const base::ListValue& value); |
| 54 void OnGetUserMedia(const std::string& origin, | 54 void OnGetUserMedia(const std::string& origin, |
| 55 bool audio, | 55 bool audio, |
| 56 bool video, | 56 bool video, |
| 57 const std::string& audio_constraints, | 57 const std::string& audio_constraints, |
| 58 const std::string& video_constraints); | 58 const std::string& video_constraints); |
| 59 void SendOnSuspendOnUIThread(); | 59 void SendOnSuspendOnUIThread(); |
| 60 | 60 |
| 61 int render_process_id_; | 61 int render_process_id_; |
| 62 bool isScreenCapture_; |
| 62 | 63 |
| 63 WebRTCEventLogHost* const event_log_host_; | 64 WebRTCEventLogHost* const event_log_host_; |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost); | 66 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTrackerHost); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace content | 69 } // namespace content |
| 69 | 70 |
| 70 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ | 71 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_PEER_CONNECTION_TRACKER_HOST_H_ |
| OLD | NEW |