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

Unified Diff: remoting/protocol/video_writer.h

Issue 4446005: Chromoting: Rename ChromotocolConfig -> SessionConfig (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Rename candidate_config vars Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/video_reader.cc ('k') | remoting/protocol/video_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/video_writer.h
diff --git a/remoting/protocol/video_writer.h b/remoting/protocol/video_writer.h
index 0b39bcb0129641f6ca12ac9b6729da46cb3f1fbc..eae6b6e60e96da3032b1f5d96e74a5c90922e0a6 100644
--- a/remoting/protocol/video_writer.h
+++ b/remoting/protocol/video_writer.h
@@ -15,24 +15,22 @@
namespace remoting {
-namespace protocol {
-class Session;
-} // namespace protocol
-
-class ChromotocolConfig;
class ChromotocolConnection;
namespace protocol {
+class Session;
+class SessionConfig;
+
// TODO(sergeyu): VideoWriter should implement VideoStub interface.
class VideoWriter {
public:
virtual ~VideoWriter();
- static VideoWriter* Create(const ChromotocolConfig* config);
+ static VideoWriter* Create(const SessionConfig* config);
// Initializes the writer.
- virtual void Init(protocol::Session* session) = 0;
+ virtual void Init(Session* session) = 0;
// Sends the |packet|.
virtual void SendPacket(const VideoPacket& packet) = 0;
« no previous file with comments | « remoting/protocol/video_reader.cc ('k') | remoting/protocol/video_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698