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

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

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/cpp/dev/audio_config_dev.h ('k') | ppapi/cpp/dev/audio_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/audio_config_dev.cc
===================================================================
--- ppapi/cpp/dev/audio_config_dev.cc (revision 70488)
+++ ppapi/cpp/dev/audio_config_dev.cc (working copy)
@@ -4,6 +4,7 @@
#include "ppapi/cpp/dev/audio_config_dev.h"
+#include "ppapi/cpp/instance.h"
#include "ppapi/cpp/module.h"
#include "ppapi/cpp/module_impl.h"
@@ -22,14 +23,15 @@
sample_frame_count_(0) {
}
-AudioConfig_Dev::AudioConfig_Dev(PP_AudioSampleRate_Dev sample_rate,
+AudioConfig_Dev::AudioConfig_Dev(Instance* instance,
+ PP_AudioSampleRate_Dev sample_rate,
uint32_t sample_frame_count)
: sample_rate_(sample_rate),
sample_frame_count_(sample_frame_count) {
if (has_interface<PPB_AudioConfig_Dev>()) {
PassRefFromConstructor(
get_interface<PPB_AudioConfig_Dev>()->CreateStereo16Bit(
- Module::Get()->pp_module(), sample_rate, sample_frame_count));
+ instance->pp_instance(), sample_rate, sample_frame_count));
}
}
« no previous file with comments | « ppapi/cpp/dev/audio_config_dev.h ('k') | ppapi/cpp/dev/audio_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698