| 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;
|
| }
|
| }
|
|
|