summaryrefslogtreecommitdiffstats
path: root/ppapi/api/ppp_instance.idl
diff options
context:
space:
mode:
authorjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-31 16:07:59 +0000
committerjond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-31 16:07:59 +0000
commite12a6a1995d233f0f4279e5a4565f485722904e2 (patch)
tree6dcf7e12a7a3d9445b8e2217b96718daecacaede /ppapi/api/ppp_instance.idl
parent31696e1086a934ec3173309dce177b1a011ddbdf (diff)
downloadchromium_src-e12a6a1995d233f0f4279e5a4565f485722904e2.zip
chromium_src-e12a6a1995d233f0f4279e5a4565f485722904e2.tar.gz
chromium_src-e12a6a1995d233f0f4279e5a4565f485722904e2.tar.bz2
Fixed spelling errors and changed all references to PP_Resource to be the
same (on @param tags) as per polina. Review URL: http://codereview.chromium.org/7701004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98972 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/ppp_instance.idl')
-rw-r--r--ppapi/api/ppp_instance.idl22
1 files changed, 11 insertions, 11 deletions
diff --git a/ppapi/api/ppp_instance.idl b/ppapi/api/ppp_instance.idl
index 600dcf1..0ee4c74 100644
--- a/ppapi/api/ppp_instance.idl
+++ b/ppapi/api/ppp_instance.idl
@@ -39,7 +39,7 @@ interface PPP_Instance {
* If this function reports a failure (by returning <code>PP_FALSE</code>),
* the instance will be deleted.
*
- * @param[in] instance A new <code>PP_Instance</code> indentifying one
+ * @param[in] instance A new <code>PP_Instance</code> identifying one
* instance of a module. This is an opaque handle.
*
* @param[in] argc The number of arguments contained in <code>argn</code>
@@ -60,7 +60,7 @@ interface PPP_Instance {
* failure.
*/
PP_Bool DidCreate(
- /* A PP_Instance indentifying one instance of a module. */
+ /* A PP_Instance identifying one instance of a module. */
[in] PP_Instance instance,
/* The number of arguments contained in argn and argv. */
[in] uint32_t argc,
@@ -102,11 +102,11 @@ interface PPP_Instance {
* instances are being deleted, and no cleanup functions will be called.
* The module will just be unloaded and the process terminated.
*
- * @param[in] instance A <code>PP_Instance</code> indentifying one instance
+ * @param[in] instance A <code>PP_Instance</code> identifying one instance
* of a module.
*/
void DidDestroy(
- /* A PP_Instance indentifying one instance of a module. */
+ /* A PP_Instance identifying one instance of a module. */
[in] PP_Instance instance);
/**
@@ -120,7 +120,7 @@ interface PPP_Instance {
* the size doesn't change, so you should always check that the size is
* actually different before doing any reallocations.
*
- * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+ * @param[in] instance A <code>PP_Instance</code> identifying the instance
* that has changed.
*
* @param[in] position The location on the page of the instance. This is
@@ -139,11 +139,11 @@ interface PPP_Instance {
* the clip when the instance is partially visible. Instead, update the entire
* region. The time saved doing partial paints is usually not significant and
* it can create artifacts when scrolling (this notification is sent
- * asynchronously from scolling so there can be flashes of old content in the
+ * asynchronously from scrolling so there can be flashes of old content in the
* exposed regions).
*/
void DidChangeView(
- /* A PP_Instance indentifying the instance whose view changed. */
+ /* A PP_Instance identifying the instance whose view changed. */
[in] PP_Instance instance,
/* The new location on the page of this instance. This is relative to
* the top left corner of the viewport, which changes as the
@@ -170,13 +170,13 @@ interface PPP_Instance {
* to make sure you're returning true from the mouse click in
* <code>HandleInputEvent</code>.
*
- * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+ * @param[in] instance A <code>PP_Instance</code> identifying the instance
* receiving the input event.
*
* @param[in] has_focus Indicates the new focused state of the instance.
*/
void DidChangeFocus(
- /* A PP_Instance indentifying one instance of a module. */
+ /* A PP_Instance identifying one instance of a module. */
[in] PP_Instance instance,
/* Indicates whether this NaCl module gained or lost event focus. */
[in] PP_Bool has_focus);
@@ -200,7 +200,7 @@ interface PPP_Instance {
* data. In response to this method, the module should call
* ReadResponseBody() to read the incoming data.
*
- * @param[in] instance A <code>PP_Instance</code> indentifying the instance
+ * @param[in] instance A <code>PP_Instance</code> identifying the instance
* that should do the load.
*
* @param[in] url_loader An open <code>PPB_URLLoader</code> instance.
@@ -209,7 +209,7 @@ interface PPP_Instance {
* <code>PP_FALSE</code> otherwise.
*/
PP_Bool HandleDocumentLoad(
- /* A PP_Instance indentifying one instance of a module. */
+ /* A PP_Instance identifying one instance of a module. */
[in] PP_Instance instance,
/* A PP_Resource an open PPB_URLLoader instance. */
[in] PP_Resource url_loader);