Index: ppapi/host/resource_host.h |
diff --git a/ppapi/host/resource_host.h b/ppapi/host/resource_host.h |
index c1e4b745ba7591ee9dd533467e4ea9f86aa1944a..27d87b366b36b847c96c3f5e94ab917bd570eac6 100644 |
--- a/ppapi/host/resource_host.h |
+++ b/ppapi/host/resource_host.h |
@@ -39,7 +39,9 @@ class PPAPI_HOST_EXPORT ResourceHost { |
// |
// You can do a response asynchronously by returning PP_OK_COMPLETIONPENDING. |
// This will cause the reply to be skipped, and the class implementing this |
- // function will take responsibility for issuing the callback later. |
+ // function will take responsibility for issuing the callback. The callback |
+ // can be issued inside OnResourceMessageReceived before it returns, or at |
+ // a future time. |
// |
// If you don't have a particular reply message, you can just ignore |
// the reply in the message context. However, if you have a reply more than |