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

Unified Diff: ppapi/cpp/audio_config.h

Issue 7715005: Changed all @code to <code> and @endcode to </code> as per dmichael (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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/ppp_messaging.h ('k') | ppapi/cpp/completion_callback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/audio_config.h
===================================================================
--- ppapi/cpp/audio_config.h (revision 98665)
+++ ppapi/cpp/audio_config.h (working copy)
@@ -40,7 +40,8 @@
/// 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(
/// PP_AUDIOSAMPLERATE_44100, 4096);
@@ -52,7 +53,7 @@
/// Audio audio(instance, config, callback, user_data);
/// if (audio.is_null())
/// return false; // Couldn't create audio.
-/// @endcode
+/// </code>
class AudioConfig : public Resource {
public:
/// An empty constructor for an <code>AudioConfig</code> resource.
@@ -63,7 +64,7 @@
/// resulting resource will be is_null(). You can pass the result of
/// RecommendSampleFrameCount() as the sample frame count.
///
- /// @param[in] instance A pointer to an <code>Instance</code> indentifying
+ /// @param[in] instance A pointer to an <code>Instance</code> identifying
/// one instance of a module.
/// @param[in] sample_rate A <code>PP_AudioSampleRate</code> which is either
/// <code>PP_AUDIOSAMPLERATE_44100</code> or
« no previous file with comments | « ppapi/c/ppp_messaging.h ('k') | ppapi/cpp/completion_callback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698