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

Unified Diff: mojo/public/cpp/utility/run_loop.h

Issue 345463003: Mojo: MojoWaitFlags -> MojoHandleSignals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/cpp/utility/lib/run_loop.cc ('k') | mojo/public/js/bindings/core.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/cpp/utility/run_loop.h
diff --git a/mojo/public/cpp/utility/run_loop.h b/mojo/public/cpp/utility/run_loop.h
index 288a68e594ba444be1a55cdca281e01b06357a60..4febc97a2c57b4a515ae73638460dec8aef58f8c 100644
--- a/mojo/public/cpp/utility/run_loop.h
+++ b/mojo/public/cpp/utility/run_loop.h
@@ -33,7 +33,7 @@ class RunLoop {
// be registered for a specified handle.
void AddHandler(RunLoopHandler* handler,
const Handle& handle,
- MojoWaitFlags wait_flags,
+ MojoHandleSignals handle_signals,
MojoDeadline deadline);
void RemoveHandler(const Handle& handle);
bool HasHandler(const Handle& handle) const;
@@ -57,12 +57,12 @@ class RunLoop {
struct HandlerData {
HandlerData()
: handler(NULL),
- wait_flags(MOJO_WAIT_FLAG_NONE),
+ handle_signals(MOJO_WAIT_FLAG_NONE),
deadline(0),
id(0) {}
RunLoopHandler* handler;
- MojoWaitFlags wait_flags;
+ MojoHandleSignals handle_signals;
MojoTimeTicks deadline;
// See description of |RunLoop::next_handler_id_| for details.
int id;
« no previous file with comments | « mojo/public/cpp/utility/lib/run_loop.cc ('k') | mojo/public/js/bindings/core.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698