Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(383)

Side by Side Diff: mojo/message_pump/message_pump_mojo_handler.h

Issue 1262173005: Straightens outs DEPS in mojo/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add dep on system_for_component Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/message_pump/message_pump_mojo.cc ('k') | mojo/message_pump/message_pump_mojo_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 8 #include "mojo/message_pump/mojo_message_pump_export.h"
9 #include "third_party/mojo/src/mojo/public/cpp/system/core.h" 9 #include "third_party/mojo/src/mojo/public/cpp/system/core.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 namespace common { 12 namespace common {
13 13
14 // Used by MessagePumpMojo to notify when a handle is either ready or has become 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. 15 // invalid. In case of error, the handler will be removed.
16 class MOJO_COMMON_EXPORT MessagePumpMojoHandler { 16 class MOJO_MESSAGE_PUMP_EXPORT MessagePumpMojoHandler {
17 public: 17 public:
18 virtual void OnHandleReady(const Handle& handle) = 0; 18 virtual void OnHandleReady(const Handle& handle) = 0;
19 19
20 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0; 20 virtual void OnHandleError(const Handle& handle, MojoResult result) = 0;
21 21
22 protected: 22 protected:
23 virtual ~MessagePumpMojoHandler() {} 23 virtual ~MessagePumpMojoHandler() {}
24 }; 24 };
25 25
26 } // namespace common 26 } // namespace common
27 } // namespace mojo 27 } // namespace mojo
28 28
29 #endif // MOJO_COMMON_MESSAGE_PUMP_MOJO_HANDLER_H_ 29 #endif // MOJO_MESSAGE_PUMP_MESSAGE_PUMP_MOJO_HANDLER_H_
OLDNEW
« no previous file with comments | « mojo/message_pump/message_pump_mojo.cc ('k') | mojo/message_pump/message_pump_mojo_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698