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

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

Issue 830593003: Update mojo sdk to rev 9fbbc4f0fef1187312316c0ed992342474e139f1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cherry-pick mojo 9d3b8dd17f12d20035a14737fdc38dd926890ff8 Created 5 years, 11 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/interfaces/bindings/tests/test_unions.mojom ('k') | mojo/public/js/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1fb3fca21472e59ce4941518c6075d97560acc56..660a13f1659a23cb0d5c267957b5887c5f978d79 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
@@ -208,10 +208,10 @@ public interface Core {
private int mHandleIndex;
/**
- * The signaling state of handles. This array will not be set if |mojoResult| is
+ * The signaling state of handles. Will not be set if |mojoResult| is
* |MOJO_RESULT_INVALID_ARGUMENT| or |MOJO_RESULT_RESOURCE_EXHAUSTED|
*/
- private HandleSignalsState[] mSignalStates;
+ private List<HandleSignalsState> mSignalStates;
/**
* Returns the mojoResult.
@@ -244,14 +244,14 @@ public interface Core {
/**
* Returns the signalStates.
*/
- public HandleSignalsState[] getSignalStates() {
+ public List<HandleSignalsState> getSignalStates() {
return mSignalStates;
}
/**
* @param signalStates the signalStates to set
*/
- public void setSignalStates(HandleSignalsState[] signalStates) {
+ public void setSignalStates(List<HandleSignalsState> signalStates) {
mSignalStates = signalStates;
}
}
« no previous file with comments | « mojo/public/interfaces/bindings/tests/test_unions.mojom ('k') | mojo/public/js/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698