diff options
author | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-28 20:26:30 +0000 |
---|---|---|
committer | teravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-28 20:26:30 +0000 |
commit | dddbff163ebfc0c7bf47ac0a81fd498f090b2af2 (patch) | |
tree | b5f3ec156eeeb6b1c41b13a900c3da5367d915be /ppapi | |
parent | 4abe202ec5ad4a135dd1f1e54b031e458192dc05 (diff) | |
download | chromium_src-dddbff163ebfc0c7bf47ac0a81fd498f090b2af2.zip chromium_src-dddbff163ebfc0c7bf47ac0a81fd498f090b2af2.tar.gz chromium_src-dddbff163ebfc0c7bf47ac0a81fd498f090b2af2.tar.bz2 |
Pepper: Clean up VarArrayBuffer docstring.
BUG=124858
Review URL: https://chromiumcodereview.appspot.com/12314125
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@185313 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/api/ppb_var_array_buffer.idl | 2 | ||||
-rw-r--r-- | ppapi/c/ppb_var_array_buffer.h | 4 | ||||
-rw-r--r-- | ppapi/cpp/var_array_buffer.h | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/ppapi/api/ppb_var_array_buffer.idl b/ppapi/api/ppb_var_array_buffer.idl index 56f9701..f48c19f 100644 --- a/ppapi/api/ppb_var_array_buffer.idl +++ b/ppapi/api/ppb_var_array_buffer.idl @@ -59,7 +59,7 @@ interface PPB_VarArrayBuffer { * and returns a pointer to the beginning of the buffer for the given * <code>ArrayBuffer PP_Var</code>. ArrayBuffers are copied when transmitted, * so changes to the underlying memory are not automatically available to - * other processes. + * the embedding page. * * Note that calling Map() can be a relatively expensive operation. Use care * when calling it in performance-critical code. For example, you should call diff --git a/ppapi/c/ppb_var_array_buffer.h b/ppapi/c/ppb_var_array_buffer.h index 3611b3b..79518e98 100644 --- a/ppapi/c/ppb_var_array_buffer.h +++ b/ppapi/c/ppb_var_array_buffer.h @@ -3,7 +3,7 @@ * found in the LICENSE file. */ -/* From ppb_var_array_buffer.idl modified Mon Feb 25 10:24:29 2013. */ +/* From ppb_var_array_buffer.idl modified Thu Feb 28 09:24:06 2013. */ #ifndef PPAPI_C_PPB_VAR_ARRAY_BUFFER_H_ #define PPAPI_C_PPB_VAR_ARRAY_BUFFER_H_ @@ -71,7 +71,7 @@ struct PPB_VarArrayBuffer_1_0 { * and returns a pointer to the beginning of the buffer for the given * <code>ArrayBuffer PP_Var</code>. ArrayBuffers are copied when transmitted, * so changes to the underlying memory are not automatically available to - * other processes. + * the embedding page. * * Note that calling Map() can be a relatively expensive operation. Use care * when calling it in performance-critical code. For example, you should call diff --git a/ppapi/cpp/var_array_buffer.h b/ppapi/cpp/var_array_buffer.h index 0898f5c..74f97aa 100644 --- a/ppapi/cpp/var_array_buffer.h +++ b/ppapi/cpp/var_array_buffer.h @@ -65,7 +65,9 @@ class VarArrayBuffer : public Var { /// Map() maps the <code>ArrayBuffer</code> in to the module's address space /// and returns a pointer to the beginning of the internal buffer for - /// this <code>ArrayBuffer</code>. + /// this <code>ArrayBuffer</code>. ArrayBuffers are copied when transmitted, + /// so changes to the underlying memory are not automatically available to + /// the embedding page. /// /// Note that calling Map() can be a relatively expensive operation. Use care /// when calling it in performance-critical code. For example, you should call |