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

Unified Diff: ppapi/shared_impl/ppb_audio_config_shared.h

Issue 9129007: Work on improving PpbAudioConfig:RecommendSampleFrameCount (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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
Index: ppapi/shared_impl/ppb_audio_config_shared.h
===================================================================
--- ppapi/shared_impl/ppb_audio_config_shared.h (revision 120806)
+++ ppapi/shared_impl/ppb_audio_config_shared.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -25,6 +25,12 @@
PP_AudioSampleRate sample_rate,
uint32_t sample_frame_count);
+ static uint32_t
brettw 2012/02/10 19:01:33 Wrap args to 4 spaces, put the function name on th
nfullagar 2012/02/14 00:42:37 Done.
+ RecommendSampleFrameCount(PP_AudioSampleRate sample_rate,
+ uint32_t request_sample_frame_count,
+ PP_AudioSampleRate hardware_sample_rate,
+ uint32_t hardware_sample_frame_count);
+
// Resource overrides.
virtual thunk::PPB_AudioConfig_API* AsPPB_AudioConfig_API() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698