summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/audio.h
diff options
context:
space:
mode:
authorjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-06 20:44:31 +0000
committerjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-06 20:44:31 +0000
commitb15cce5b4944bac1d6016a4ee6ae82bf7c013168 (patch)
tree28a34f9af784b392c2652f9799e3c3934ce585ca /ppapi/cpp/audio.h
parentdc7bc61a6518a6471f848a83d96d67b4b24fdc61 (diff)
downloadchromium_src-b15cce5b4944bac1d6016a4ee6ae82bf7c013168.zip
chromium_src-b15cce5b4944bac1d6016a4ee6ae82bf7c013168.tar.gz
chromium_src-b15cce5b4944bac1d6016a4ee6ae82bf7c013168.tar.bz2
Formatting changes.
Review URL: http://codereview.chromium.org/7307014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/audio.h')
-rw-r--r--ppapi/cpp/audio.h37
1 files changed, 21 insertions, 16 deletions
diff --git a/ppapi/cpp/audio.h b/ppapi/cpp/audio.h
index 6c8ede8..cc98e56 100644
--- a/ppapi/cpp/audio.h
+++ b/ppapi/cpp/audio.h
@@ -29,39 +29,44 @@ class Audio : public Resource {
/// A constructor that creates an Audio resource. No sound will be heard
/// until StartPlayback() is called. The callback is called with the buffer
/// address and given user data whenever the buffer needs to be filled.
- /// From within the callback, you should not call PPB_Audio functions.
- /// The callback will be called on a different thread than the one which
- /// created the interface. For performance-critical applications (i.e.
- /// low-latency audio), the callback should avoid blocking or calling
+ /// From within the callback, you should not call <code>PPB_Audio</code>
+ /// functions. The callback will be called on a different thread than the one
+ /// which created the interface. For performance-critical applications (such
+ /// as low-latency audio), the callback should avoid blocking or calling
/// functions that can obtain locks, such as malloc. The layout and the size
/// of the buffer passed to the audio callback will be determined by
- /// the device configuration and is specified in the AudioConfig
+ /// the device configuration and is specified in the <code>AudioConfig</code>
/// documentation.
///
- /// @param[in] instance A pointer to an Instance indentifying one instance of
- /// a module.
- /// @param[in] config An AudioConfig containing the audio config resource.
- /// @param[in] callback A PPB_Audio_Callback callback function that the
- /// browser calls when it needs more samples to play.
+ /// @param[in] instance A pointer to an <code>Instance</code> indentifying one
+ /// instance of a module.
+ /// @param[in] config An <code>AudioConfig</code> containing the audio config
+ /// resource.
+ /// @param[in] callback A <code>PPB_Audio_Callback</code> callback function
+ /// that the browser calls when it needs more samples to play.
/// @param[in] user_data A pointer to user data used in the callback function.
Audio(Instance* instance,
const AudioConfig& config,
PPB_Audio_Callback callback,
void* user_data);
-
- /// Getter function for returning the internal PPB_AudioConfig struct
+ /// Getter function for returning the internal <code>PPB_AudioConfig</code>
+ /// struct.
+ ///
/// @return A mutable reference to the PPB_AudioConfig struct.
AudioConfig& config() { return config_; }
- /// Getter function for returning the internal PPB_AudioConfig struct.
- /// @return A const reference to the internal PPB_AudioConfig struct.
+ /// Getter function for returning the internal <code>PPB_AudioConfig</code>
+ /// struct.
+ ///
+ /// @return A const reference to the internal <code>PPB_AudioConfig</code>
+ /// struct.
const AudioConfig& config() const { return config_; }
- /// A function to start playback of audio.
+ /// StartPlayback() starts playback of audio.
bool StartPlayback();
- /// A function to stop playback of audio.
+ /// StopPlayback stops playback of audio.
bool StopPlayback();
private: