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

Unified Diff: mojo/system/waiter_list.cc

Issue 339193005: Mojo: Rename (Mojo)WaitFlagsState -> (Mojo)HandleSignalsState. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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/system/waiter_list.h ('k') | mojo/system/waiter_list_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/system/waiter_list.cc
diff --git a/mojo/system/waiter_list.cc b/mojo/system/waiter_list.cc
index 3de452a92f6446dabbd3f0aa259dcd8bc74ff4ec..6ee90100aa8eba36af6ee36897aed5a216bc0536 100644
--- a/mojo/system/waiter_list.cc
+++ b/mojo/system/waiter_list.cc
@@ -5,7 +5,7 @@
#include "mojo/system/waiter_list.h"
#include "base/logging.h"
-#include "mojo/system/wait_flags_state.h"
+#include "mojo/system/handle_signals_state.h"
#include "mojo/system/waiter.h"
namespace mojo {
@@ -18,7 +18,7 @@ WaiterList::~WaiterList() {
DCHECK(waiters_.empty());
}
-void WaiterList::AwakeWaitersForStateChange(const WaitFlagsState& state) {
+void WaiterList::AwakeWaitersForStateChange(const HandleSignalsState& state) {
for (WaiterInfoList::iterator it = waiters_.begin(); it != waiters_.end();
++it) {
if (state.satisfies(it->signals))
« no previous file with comments | « mojo/system/waiter_list.h ('k') | mojo/system/waiter_list_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698