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

Unified Diff: ppapi/cpp/dev/audio_config_dev.h

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 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
« no previous file with comments | « ppapi/c/ppb_image_data.h ('k') | ppapi/cpp/dev/audio_config_dev.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/audio_config_dev.h
===================================================================
--- ppapi/cpp/dev/audio_config_dev.h (revision 70488)
+++ ppapi/cpp/dev/audio_config_dev.h (working copy)
@@ -11,6 +11,8 @@
namespace pp {
+class Instance;
+
// Typical usage:
//
// // Create an audio config with a supported frame count.
@@ -34,7 +36,8 @@
// semple frame count.
//
// See PPB_AudioConfigDev.CreateStereo16Bit for more.
- AudioConfig_Dev(PP_AudioSampleRate_Dev sample_rate,
+ AudioConfig_Dev(Instance* instance,
+ PP_AudioSampleRate_Dev sample_rate,
uint32_t sample_frame_count);
// Returns a supported frame count for use in the constructor.
« no previous file with comments | « ppapi/c/ppb_image_data.h ('k') | ppapi/cpp/dev/audio_config_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698