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

Side by Side Diff: mojo/public/cpp/bindings/lib/connector.h

Issue 617503003: Mojo: MOJO_OVERRIDE -> override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 2 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/public/cpp/bindings/callback.h.pump ('k') | mojo/public/cpp/bindings/lib/fixed_buffer.h » ('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_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_
6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_
7 7
8 #include "mojo/public/c/environment/async_waiter.h" 8 #include "mojo/public/c/environment/async_waiter.h"
9 #include "mojo/public/cpp/bindings/lib/message_queue.h" 9 #include "mojo/public/cpp/bindings/lib/message_queue.h"
10 #include "mojo/public/cpp/bindings/message.h" 10 #include "mojo/public/cpp/bindings/message.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 // Releases the pipe, not triggering the error state. Connector is put into 62 // Releases the pipe, not triggering the error state. Connector is put into
63 // a quiescent state. 63 // a quiescent state.
64 ScopedMessagePipeHandle PassMessagePipe(); 64 ScopedMessagePipeHandle PassMessagePipe();
65 65
66 // Waits for the next message on the pipe, blocking until one arrives or an 66 // Waits for the next message on the pipe, blocking until one arrives or an
67 // error happens. Returns |true| if a message has been delivered, |false| 67 // error happens. Returns |true| if a message has been delivered, |false|
68 // otherwise. 68 // otherwise.
69 bool WaitForIncomingMessage(); 69 bool WaitForIncomingMessage();
70 70
71 // MessageReceiver implementation: 71 // MessageReceiver implementation:
72 virtual bool Accept(Message* message) MOJO_OVERRIDE; 72 virtual bool Accept(Message* message) override;
73 73
74 private: 74 private:
75 static void CallOnHandleReady(void* closure, MojoResult result); 75 static void CallOnHandleReady(void* closure, MojoResult result);
76 void OnHandleReady(MojoResult result); 76 void OnHandleReady(MojoResult result);
77 77
78 void WaitToReadMore(); 78 void WaitToReadMore();
79 79
80 // Returns false if |this| was destroyed during message dispatch. 80 // Returns false if |this| was destroyed during message dispatch.
81 MOJO_WARN_UNUSED_RESULT bool ReadSingleMessage(MojoResult* read_result); 81 MOJO_WARN_UNUSED_RESULT bool ReadSingleMessage(MojoResult* read_result);
82 82
(...skipping 21 matching lines...) Expand all
104 // of dispatching an incoming message. 104 // of dispatching an incoming message.
105 bool* destroyed_flag_; 105 bool* destroyed_flag_;
106 106
107 MOJO_DISALLOW_COPY_AND_ASSIGN(Connector); 107 MOJO_DISALLOW_COPY_AND_ASSIGN(Connector);
108 }; 108 };
109 109
110 } // namespace internal 110 } // namespace internal
111 } // namespace mojo 111 } // namespace mojo
112 112
113 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ 113 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/callback.h.pump ('k') | mojo/public/cpp/bindings/lib/fixed_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698