| 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; | |
| 21 class DictionaryValue; | 20 class DictionaryValue; |
| 21 class Value; |
| 22 using BinaryValue = Value; |
| 22 } | 23 } |
| 23 | 24 |
| 24 namespace net { | 25 namespace net { |
| 25 class IPEndPoint; | 26 class IPEndPoint; |
| 26 } | 27 } |
| 27 | 28 |
| 28 namespace media { | 29 namespace media { |
| 29 class AudioCapturerSource; | 30 class AudioCapturerSource; |
| 30 class AudioParameters; | 31 class AudioParameters; |
| 31 class VideoCapturerSource; | 32 class VideoCapturerSource; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 RtpStreamCallbackMap get_stats_callbacks_; | 141 RtpStreamCallbackMap get_stats_callbacks_; |
| 141 | 142 |
| 142 base::WeakPtrFactory<CastStreamingNativeHandler> weak_factory_; | 143 base::WeakPtrFactory<CastStreamingNativeHandler> weak_factory_; |
| 143 | 144 |
| 144 DISALLOW_COPY_AND_ASSIGN(CastStreamingNativeHandler); | 145 DISALLOW_COPY_AND_ASSIGN(CastStreamingNativeHandler); |
| 145 }; | 146 }; |
| 146 | 147 |
| 147 } // namespace extensions | 148 } // namespace extensions |
| 148 | 149 |
| 149 #endif // CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ | 150 #endif // CHROME_RENDERER_EXTENSIONS_CAST_STREAMING_NATIVE_HANDLER_H_ |
| OLD | NEW |