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

Side by Side Diff: chrome/renderer/media/cast_send_transport.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/loadtimes_extension_bindings.cc ('k') | chrome/renderer/mock_printer.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_MEDIA_CAST_SEND_TRANSPORT_H_ 5 #ifndef CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
6 #define CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ 6 #define CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 13
14 namespace WebKit { 14 namespace blink {
15 class WebMediaStreamTrack; 15 class WebMediaStreamTrack;
16 } // namespace WebKit 16 } // namespace blink
17 17
18 class CastSession; 18 class CastSession;
19 class CastUdpTransport; 19 class CastUdpTransport;
20 20
21 // A key value pair structure for codec specific parameters. 21 // A key value pair structure for codec specific parameters.
22 struct CastCodecSpecificParams { 22 struct CastCodecSpecificParams {
23 std::string key; 23 std::string key;
24 std::string value; 24 std::string value;
25 25
26 CastCodecSpecificParams(); 26 CastCodecSpecificParams();
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // Stop encoding. 103 // Stop encoding.
104 void Stop(); 104 void Stop();
105 105
106 private: 106 private:
107 const scoped_refptr<CastSession> cast_session_; 107 const scoped_refptr<CastSession> cast_session_;
108 108
109 DISALLOW_COPY_AND_ASSIGN(CastSendTransport); 109 DISALLOW_COPY_AND_ASSIGN(CastSendTransport);
110 }; 110 };
111 111
112 #endif // CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_ 112 #endif // CHROME_RENDERER_MEDIA_CAST_SEND_TRANSPORT_H_
OLDNEW
« no previous file with comments | « chrome/renderer/loadtimes_extension_bindings.cc ('k') | chrome/renderer/mock_printer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698