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