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

Unified Diff: remoting/protocol/audio_writer.cc

Issue 1649063003: Add MessagePipe interface. Use it in ChannelDispatcherBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_parser
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: remoting/protocol/audio_writer.cc
diff --git a/remoting/protocol/audio_writer.cc b/remoting/protocol/audio_writer.cc
index be60d2e6955f9a02ee10a7b86627093babbfea3f..9fc899cc09b13d937c4f125c748db416452adea1 100644
--- a/remoting/protocol/audio_writer.cc
+++ b/remoting/protocol/audio_writer.cc
@@ -8,23 +8,19 @@
#include "net/socket/stream_socket.h"
#include "remoting/base/constants.h"
#include "remoting/proto/audio.pb.h"
-#include "remoting/protocol/message_serialization.h"
+#include "remoting/protocol/message_pipe.h"
#include "remoting/protocol/session.h"
#include "remoting/protocol/session_config.h"
namespace remoting {
namespace protocol {
-AudioWriter::AudioWriter()
- : ChannelDispatcherBase(kAudioChannelName) {
-}
-
-AudioWriter::~AudioWriter() {
-}
+AudioWriter::AudioWriter() : ChannelDispatcherBase(kAudioChannelName) {}
+AudioWriter::~AudioWriter() {}
void AudioWriter::ProcessAudioPacket(scoped_ptr<AudioPacket> packet,
const base::Closure& done) {
- writer()->Write(SerializeAndFrameMessage(*packet), done);
+ message_pipe()->Send(packet.get(), done);
}
// static
« no previous file with comments | « no previous file | remoting/protocol/channel_dispatcher_base.h » ('j') | remoting/protocol/channel_dispatcher_base.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698