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

Side by Side Diff: remoting/protocol/audio_writer.cc

Issue 10535153: Added files for audio writers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed a small style issue Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "remoting/protocol/audio_writer.h"
6
7 #include "remoting/protocol/protobuf_audio_writer.h"
8 #include "remoting/protocol/session_config.h"
9
10 namespace remoting {
11 namespace protocol {
12
13 AudioWriter::~AudioWriter() { }
14
15 // static
16 AudioWriter* AudioWriter::Create(const SessionConfig& config) {
17 // TODO(kxing) make this correct
Sergey Ulanov 2012/06/14 17:53:17 nit: should be formatted like this: TODO(kxing):
Sergey Ulanov 2012/06/14 17:53:17 nit: comment is not clear. Should it be "Implement
kxing 2012/06/14 22:30:42 Sorry, I meant for the comment to read: "Support d
kxing 2012/06/14 22:30:42 Done.
18 return new ProtobufAudioWriter();
19 }
20
21 } // namespace protocol
22 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698