diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 19:14:40 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 19:14:40 +0000 |
commit | 42efeb41c144abd1e0b6ac36ddacabd1c4ee4f72 (patch) | |
tree | 4d2073a40afdaa174fd36469f2ae060303186ad8 | |
parent | 4404e5b56399fde35156854dfa6fdb412736861d (diff) | |
download | chromium_src-42efeb41c144abd1e0b6ac36ddacabd1c4ee4f72.zip chromium_src-42efeb41c144abd1e0b6ac36ddacabd1c4ee4f72.tar.gz chromium_src-42efeb41c144abd1e0b6ac36ddacabd1c4ee4f72.tar.bz2 |
Changed "Pepper Audio API Code Walkthrough" to "Pepper Audio API" as per Andy.
Review URL: http://codereview.chromium.org/7664012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97003 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ppapi/api/ppb_audio.idl | 2 | ||||
-rw-r--r-- | ppapi/api/ppb_audio_config.idl | 2 | ||||
-rw-r--r-- | ppapi/c/ppb_audio.h | 4 | ||||
-rw-r--r-- | ppapi/c/ppb_audio_config.h | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/ppapi/api/ppb_audio.idl b/ppapi/api/ppb_audio.idl index 5767e66..f885f7d 100644 --- a/ppapi/api/ppb_audio.idl +++ b/ppapi/api/ppb_audio.idl @@ -27,7 +27,7 @@ typedef void PPB_Audio_Callback([out] mem_t sample_buffer, * The <code>PPB_Audio</code> interface contains pointers to several functions * for handling audio resources. Please refer to the * <a href="/chrome/nativeclient/docs/audio.html">Pepper - * Audio API Code Walkthrough</a> for information on using this interface. + * Audio API</a> for information on using this interface. * Please see descriptions for each <code>PPB_Audio</code> and * <code>PPB_AudioConfig</code> function for more details. * diff --git a/ppapi/api/ppb_audio_config.idl b/ppapi/api/ppb_audio_config.idl index b745999..b3f6c52 100644 --- a/ppapi/api/ppb_audio_config.idl +++ b/ppapi/api/ppb_audio_config.idl @@ -46,7 +46,7 @@ enum PP_AudioSampleRate { * * Refer to the * <a href="/chrome/nativeclient/docs/audio.html">Pepper - * Audio API Code Walkthrough</a> for information on using this interface. + * Audio API</a> for information on using this interface. */ [macro="PPB_AUDIO_CONFIG_INTERFACE"] interface PPB_AudioConfig { diff --git a/ppapi/c/ppb_audio.h b/ppapi/c/ppb_audio.h index 89916de..32286df 100644 --- a/ppapi/c/ppb_audio.h +++ b/ppapi/c/ppb_audio.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_audio.idl modified Thu Aug 11 14:14:47 2011. */ +/* From ppb_audio.idl modified Tue Aug 16 10:08:09 2011. */ #ifndef PPAPI_C_PPB_AUDIO_H_ #define PPAPI_C_PPB_AUDIO_H_ @@ -46,7 +46,7 @@ typedef void (*PPB_Audio_Callback)(void* sample_buffer, * The <code>PPB_Audio</code> interface contains pointers to several functions * for handling audio resources. Please refer to the * <a href="/chrome/nativeclient/docs/audio.html">Pepper - * Audio API Code Walkthrough</a> for information on using this interface. + * Audio API</a> for information on using this interface. * Please see descriptions for each <code>PPB_Audio</code> and * <code>PPB_AudioConfig</code> function for more details. * diff --git a/ppapi/c/ppb_audio_config.h b/ppapi/c/ppb_audio_config.h index 918cb45..73fdb63 100644 --- a/ppapi/c/ppb_audio_config.h +++ b/ppapi/c/ppb_audio_config.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_audio_config.idl modified Sat Jul 16 16:50:26 2011. */ +/* From ppb_audio_config.idl modified Tue Aug 16 10:08:33 2011. */ #ifndef PPAPI_C_PPB_AUDIO_CONFIG_H_ #define PPAPI_C_PPB_AUDIO_CONFIG_H_ @@ -63,7 +63,7 @@ PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_AudioSampleRate, 4); * * Refer to the * <a href="/chrome/nativeclient/docs/audio.html">Pepper - * Audio API Code Walkthrough</a> for information on using this interface. + * Audio API</a> for information on using this interface. */ #define PPB_AUDIO_CONFIG_INTERFACE_0_5 "PPB_AudioConfig;0.5" #define PPB_AUDIO_CONFIG_INTERFACE_1_0 "PPB_AudioConfig;1.0" |