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

Side by Side Diff: remoting/client/jni/audio_player_impl.cc

Issue 18856012: Create new remoting_client_jni target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 2013 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/client/jni/audio_player_impl.h"
6
7 #include "base/logging.h"
8
9 namespace remoting {
10
11 AudioPlayerImpl::AudioPlayerImpl() {}
12
13 uint32 AudioPlayerImpl::GetSamplesPerFrame() {
14 LOG(WARNING) << "AudioPlayerImpl::GetSamplesPerFrame() [unimplemented]";
Wez 2013/07/09 17:34:47 nit: NOTIMPLEMENTED()
15 return 0; // TODO(solb) This is a stub.
Wez 2013/07/09 17:34:47 No need for this comment, nor the one below.
16 }
17
18 bool AudioPlayerImpl::ResetAudioPlayer(
19 AudioPacket::SamplingRate sampling_rate) {
20 LOG(WARNING) << "AudioPlayerImpl::ResetAudioPlayer(...) [unimplemented]";
Wez 2013/07/09 17:34:47 nit: As above.
21 return false; // TODO(solb) This is a stub.
22 }
23
24 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698