Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |