Chromium Code Reviews| Index: base/message_loop.h |
| diff --git a/base/message_loop.h b/base/message_loop.h |
| index 0812c0fcc2902543ee4a01dfaa919af5971ce259..4b85c3a3c4efff8603216bb1c25da831e52b524e 100644 |
| --- a/base/message_loop.h |
| +++ b/base/message_loop.h |
| @@ -631,7 +631,8 @@ class BASE_EXPORT MessageLoopForIO : public MessageLoop { |
| #if defined(OS_WIN) |
| // Please see MessagePumpWin for definitions of these methods. |
| - void RegisterIOHandler(HANDLE file_handle, IOHandler* handler); |
| + void RegisterIOHandler(HANDLE file, IOHandler* handler); |
| + bool RegisterJobObject(HANDLE job, IOHandler* handler); |
|
jar (doing other things)
2012/08/11 02:30:01
Please add comment explaining that the return bool
alexeypa (please no reviews)
2012/08/13 15:15:14
Done.
jar (doing other things)
2012/08/15 23:42:03
I didn't see the added comments.
On 2012/08/13 15
alexeypa (please no reviews)
2012/08/15 23:55:50
rvargas@ asked me not to copy-paste documentation.
|
| bool WaitForIOCompletion(DWORD timeout, IOHandler* filter); |
| protected: |