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

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

Issue 898853006: Java content handler for Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/system/src/org/chromium/mojo/system/Core.java
diff --git a/mojo/public/java/system/src/org/chromium/mojo/system/Core.java b/mojo/public/java/system/src/org/chromium/mojo/system/Core.java
index 660a13f1659a23cb0d5c267957b5887c5f978d79..5dc45f25fa99f693a28332666063f97193a3407d 100644
--- a/mojo/public/java/system/src/org/chromium/mojo/system/Core.java
+++ b/mojo/public/java/system/src/org/chromium/mojo/system/Core.java
@@ -309,4 +309,18 @@ public interface Core {
*/
public AsyncWaiter getDefaultAsyncWaiter();
+ /**
+ * Returns a new run loop.
+ */
+ public RunLoop createDefaultRunLoop();
+
+ /**
+ * Returns the current run loop if it exists.
+ */
+ public void setCurrentRunLoop(RunLoop runLoop);
qsr 2015/02/05 16:50:07 Hum... What is the use case for this method? I thi
etiennej 2015/02/06 16:22:29 Removed. Agreed we don't need it for now, but we w
+
+ /**
+ * Returns the current run loop if it exists.
+ */
+ public RunLoop getCurrentRunLoop();
}

Powered by Google App Engine
This is Rietveld 408576698