Chromium Code Reviews| Index: ppapi/cpp/instance.h |
| diff --git a/ppapi/cpp/instance.h b/ppapi/cpp/instance.h |
| index 6bf4e839381c3d371f0af86f88effabb37b31f21..21db53ca9c28f48289e6ef768b17815bf049dc81 100644 |
| --- a/ppapi/cpp/instance.h |
| +++ b/ppapi/cpp/instance.h |
| @@ -174,10 +174,10 @@ class Instance { |
| /// RequestInputEvents() or RequestFilteringInputEvents(). By |
| /// default, no events are delivered. |
| /// |
| - /// If the event was handled, it will not be forwarded to the web page or |
| - /// browser. If it was not handled, it will bubble according to the normal |
| - /// rules. So it is important that an instance respond accurately with whether |
| - /// event propagation should continue. |
| + /// If the event was handled, it will not be forwarded to any default |
| + /// handlers. If it was not handled, it will bubble according to the normal |
|
dmichael (off chromium)
2014/04/08 19:38:00
Same comment as for the C
|
| + /// rules. So it is important that an instance respond accurately with |
| + /// whether event propagation should continue. |
| /// |
| /// Event propagation also controls focus. If you handle an event like a mouse |
| /// event, typically the instance will be given focus. Returning false from |