| Index: base/message_loop/message_loop_unittest.cc
|
| diff --git a/base/message_loop/message_loop_unittest.cc b/base/message_loop/message_loop_unittest.cc
|
| index ccf79c05b7597f11d0cd28b81e71b805aee92727..ddde6bb170d937fb2a4f5376e193ff507d4f01a7 100644
|
| --- a/base/message_loop/message_loop_unittest.cc
|
| +++ b/base/message_loop/message_loop_unittest.cc
|
| @@ -425,7 +425,7 @@ class DispatcherImpl : public MessagePumpDispatcher {
|
| public:
|
| DispatcherImpl() : dispatch_count_(0) {}
|
|
|
| - virtual uint32_t Dispatch(const NativeEvent& msg) override {
|
| + uint32_t Dispatch(const NativeEvent& msg) override {
|
| ::TranslateMessage(&msg);
|
| ::DispatchMessage(&msg);
|
| // Do not count WM_TIMER since it is not what we post and it will cause
|
| @@ -489,8 +489,9 @@ class TestIOHandler : public MessageLoopForIO::IOHandler {
|
| public:
|
| TestIOHandler(const wchar_t* name, HANDLE signal, bool wait);
|
|
|
| - virtual void OnIOCompleted(MessageLoopForIO::IOContext* context,
|
| - DWORD bytes_transfered, DWORD error);
|
| + void OnIOCompleted(MessageLoopForIO::IOContext* context,
|
| + DWORD bytes_transfered,
|
| + DWORD error) override;
|
|
|
| void Init();
|
| void WaitForIO();
|
|
|