| 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 CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "extensions/renderer/object_backed_native_handler.h" | 13 #include "extensions/renderer/object_backed_native_handler.h" |
| 14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
| 15 | 15 |
| 16 class CastRtpStream; | 16 class CastRtpStream; |
| 17 class CastUdpTransport; | 17 class CastUdpTransport; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class BinaryValue; | 20 class BinaryValue; |
| 21 class DictionaryValue; | 21 class DictionaryValue; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace blink { | |
| 25 class WebMediaStream; | |
| 26 } | |
| 27 | |
| 28 namespace net { | 24 namespace net { |
| 29 class IPEndPoint; | 25 class IPEndPoint; |
| 30 } | 26 } |
| 31 | 27 |
| 32 namespace media { | 28 namespace media { |
| 33 class AudioCapturerSource; | 29 class AudioCapturerSource; |
| 34 class AudioParameters; | 30 class AudioParameters; |
| 35 class VideoCapturerSource; | 31 class VideoCapturerSource; |
| 36 namespace cast { | 32 namespace cast { |
| 37 struct FrameReceiverConfig; | 33 struct FrameReceiverConfig; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 RtpStreamCallbackMap get_stats_callbacks_; | 140 RtpStreamCallbackMap get_stats_callbacks_; |
| 145 | 141 |
| 146 base::WeakPtrFactory<CastStreamingNativeHandler> weak_factory_; | 142 base::WeakPtrFactory<CastStreamingNativeHandler> weak_factory_; |
| 147 | 143 |
| 148 DISALLOW_COPY_AND_ASSIGN(CastStreamingNativeHandler); | 144 DISALLOW_COPY_AND_ASSIGN(CastStreamingNativeHandler); |
| 149 }; | 145 }; |
| 150 | 146 |
| 151 } // namespace extensions | 147 } // namespace extensions |
| 152 | 148 |
| 153 #endif // CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ | 149 #endif // CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ |
| OLD | NEW |