| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_ | |
| 6 #define MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_ | |
| 7 | |
| 8 #include "third_party/mojo/src/mojo/public/cpp/system/core.h" | |
| 9 | |
| 10 namespace mojo { | |
| 11 namespace common { | |
| 12 | |
| 13 // Used by MessagePumpMojo to notify when a handle is either ready or has become | |
| 14 // invalid. In case of error, the handler will be removed. | |
| 15 class MessagePumpMojoHandler { | |
| 16 public: | |
| 17 virtual void OnHandleReady(const Handle& handle) = 0; | |
| 18 | |
| 19 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0; | |
| 20 | |
| 21 protected: | |
| 22 virtual ~MessagePumpMojoHandler() {} | |
| 23 }; | |
| 24 | |
| 25 } // namespace common | |
| 26 } // namespace mojo | |
| 27 | |
| 28 #endif // MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_ | |
| OLD | NEW |