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

Unified Diff: mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java

Issue 394763007: Rename WaitFlags (etc.) to HandleSignals in Java bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
Index: mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java
diff --git a/mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java b/mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java
index f62ac76a11b8623233d29e3a268a9d714aa6fa4a..474de4bd2c556e96b1c36c60546111ae71292987 100644
--- a/mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java
+++ b/mojo/public/java/src/org/chromium/mojo/system/AsyncWaiter.java
@@ -4,7 +4,7 @@
package org.chromium.mojo.system;
-import org.chromium.mojo.system.Core.WaitFlags;
+import org.chromium.mojo.system.Core.HandleSignals;
/**
* A class which implements the {@link AsyncWaiter} allows asynchronously waiting on a background
@@ -48,6 +48,6 @@ public interface AsyncWaiter {
* should only be used on the current thread, and becomes invalid once the callback has
* been notified.
*/
- Cancellable asyncWait(Handle handle, WaitFlags flags, long deadline, Callback callback);
+ Cancellable asyncWait(Handle handle, HandleSignals signals, long deadline, Callback callback);
}

Powered by Google App Engine
This is Rietveld 408576698