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

Side by Side Diff: ppapi/cpp/dev/audio_input_dev.h

Issue 8138008: Implementation of ppapi audio. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 2 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
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 #ifndef PPAPI_CPP_DEV_AUDIO_INPUT_DEV_H_
6 #define PPAPI_CPP_DEV_AUDIO_INPUT_DEV_H_
7
8 #include "ppapi/c/dev/ppb_audio_input_dev.h"
9 #include "ppapi/cpp/resource.h"
10
11 namespace pp {
12
13 class Instance;
14
15 class AudioInput_Dev : public Resource {
16 public:
17 /// An empty constructor for an AudioInput resource.
18 AudioInput_Dev() {}
19
20 AudioInput_Dev(Instance* instance,
21 PPB_AudioInput_Callback callback,
22 void* user_data);
23
24 bool StartCapture();
25 bool StopCapture();
26 };
27
28 } // namespace pp
29
30 #endif // PPAPI_CPP_DEV_AUDIO_INPUT_DEV_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698