Mandoline UI Process: Update namespaces and file names
[chromium-blink-merge.git] / mojo / message_pump / message_pump_mojo_handler.h
blob35ae0369af471f59e726e0d8bd783a01d0c32d76
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.
5 #ifndef MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_
6 #define MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_
8 #include "mojo/message_pump/mojo_message_pump_export.h"
9 #include "third_party/mojo/src/mojo/public/cpp/system/core.h"
11 namespace mojo {
12 namespace common {
14 // 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.
16 class MOJO_MESSAGE_PUMP_EXPORT MessagePumpMojoHandler {
17 public:
18 virtual void OnHandleReady(const Handle& handle) = 0;
20 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0;
22 protected:
23 virtual ~MessagePumpMojoHandler() {}
26 } // namespace common
27 } // namespace mojo
29 #endif // MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_