summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp
diff options
context:
space:
mode:
authorjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-03 00:38:02 +0000
committerjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-03 00:38:02 +0000
commitca9bc12c35182108e8e726d8ac95f8a4f3538350 (patch)
tree727d7a12b6dac28e243d043bd35068a401832e78 /ppapi/cpp
parent6b1af1fef4a8e1df945b890634fca6a838bb6d79 (diff)
downloadchromium_src-ca9bc12c35182108e8e726d8ac95f8a4f3538350.zip
chromium_src-ca9bc12c35182108e8e726d8ac95f8a4f3538350.tar.gz
chromium_src-ca9bc12c35182108e8e726d8ac95f8a4f3538350.tar.bz2
Changed <code> to @code and </code> to @endcode (for formatting issues. Removed .html (extensions not needed for DevSite) as per Andy.
Review URL: http://codereview.chromium.org/9421037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124788 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp')
-rw-r--r--ppapi/cpp/audio_config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/ppapi/cpp/audio_config.h b/ppapi/cpp/audio_config.h
index e8c47ab..46eda9d 100644
--- a/ppapi/cpp/audio_config.h
+++ b/ppapi/cpp/audio_config.h
@@ -19,8 +19,9 @@ namespace pp {
class InstanceHandle;
/// A 16 bit stereo AudioConfig resource. Refer to the
-/// <a href="/chrome/nativeclient/docs/audio.html">Pepper
-/// Audio API Code Walkthrough</a> for information on using this interface.
+/// <a href="/native-client/{{pepperversion}}/devguide/coding/audio">Audio
+/// </a> chapter in the Developer's Guide for information on using this
+/// interface.
///
/// A single sample frame on a stereo device means one value for the left
/// channel and one value for the right channel.
@@ -40,7 +41,7 @@ class InstanceHandle;
/// Data will always be in the native endian format of the platform.
///
/// <strong>Example:</strong>
-/// <code>
+/// @code
///
/// // Create an audio config with a supported frame count.
/// uint32_t sample_frame_count = AudioConfig::RecommendSampleFrameCount(
@@ -53,7 +54,7 @@ class InstanceHandle;
/// Audio audio(instance, config, callback, user_data);
/// if (audio.is_null())
/// return false; // Couldn't create audio.
-/// </code>
+/// @endcode
class AudioConfig : public Resource {
public:
/// An empty constructor for an <code>AudioConfig</code> resource.