Index: ppapi/api/ppp_instance.idl |
=================================================================== |
--- ppapi/api/ppp_instance.idl (revision 98665) |
+++ ppapi/api/ppp_instance.idl (working copy) |
@@ -39,7 +39,7 @@ |
* 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 @@ |
* 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 @@ |
* 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 @@ |
* 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 @@ |
* 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 @@ |
* 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 @@ |
* 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 @@ |
* <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); |