| Index: mojo/android/system/src/org/chromium/mojo/system/impl/DataPipeProducerHandleImpl.java
|
| diff --git a/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java b/mojo/android/system/src/org/chromium/mojo/system/impl/DataPipeProducerHandleImpl.java
|
| similarity index 84%
|
| rename from mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
|
| rename to mojo/android/system/src/org/chromium/mojo/system/impl/DataPipeProducerHandleImpl.java
|
| index 5e4081b3a90dd1d47e6894cd1426db7e2e47652f..308c8cc28a67c2b93d119c9d42b1ed93d30a3f9d 100644
|
| --- a/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
|
| +++ b/mojo/android/system/src/org/chromium/mojo/system/impl/DataPipeProducerHandleImpl.java
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -package org.chromium.mojo.system;
|
| +package org.chromium.mojo.system.impl;
|
|
|
| import org.chromium.mojo.system.DataPipe.ProducerHandle;
|
| import org.chromium.mojo.system.DataPipe.WriteFlags;
|
| @@ -29,7 +29,7 @@ class DataPipeProducerHandleImpl extends HandleBase implements ProducerHandle {
|
| }
|
|
|
| /**
|
| - * @see DataPipe.ProducerHandle#writeData(ByteBuffer, WriteFlags)
|
| + * @see ProducerHandle#writeData(ByteBuffer, WriteFlags)
|
| */
|
| @Override
|
| public int writeData(ByteBuffer elements, WriteFlags flags) {
|
| @@ -37,7 +37,7 @@ class DataPipeProducerHandleImpl extends HandleBase implements ProducerHandle {
|
| }
|
|
|
| /**
|
| - * @see DataPipe.ProducerHandle#beginWriteData(int, WriteFlags)
|
| + * @see ProducerHandle#beginWriteData(int, WriteFlags)
|
| */
|
| @Override
|
| public ByteBuffer beginWriteData(int numBytes, WriteFlags flags) {
|
| @@ -45,7 +45,7 @@ class DataPipeProducerHandleImpl extends HandleBase implements ProducerHandle {
|
| }
|
|
|
| /**
|
| - * @see DataPipe.ProducerHandle#endWriteData(int)
|
| + * @see ProducerHandle#endWriteData(int)
|
| */
|
| @Override
|
| public void endWriteData(int numBytesWritten) {
|
|
|