Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: chrome/renderer/extensions/cast_streaming_native_handler.h

Issue 2689673002: Inline base::BinaryValue into base::Value (Closed)
Patch Set: Rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/values_unittest.cc ('k') | chrome/renderer/media/cast_rtp_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « base/values_unittest.cc ('k') | chrome/renderer/media/cast_rtp_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698