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

Unified Diff: mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java

Issue 291103004: Add conversion from Handle to UntypedHandle (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: HandleImpl -> HandleBase Created 6 years, 7 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/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
diff --git a/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java b/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
index d6e00dfed5e1f9ec84805a2f8f368dd213094f47..5e4081b3a90dd1d47e6894cd1426db7e2e47652f 100644
--- a/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
+++ b/mojo/android/system/src/org/chromium/mojo/system/DataPipeProducerHandleImpl.java
@@ -12,17 +12,17 @@ import java.nio.ByteBuffer;
/**
* Implementation of {@link ProducerHandle}.
*/
-class DataPipeProducerHandleImpl extends HandleImpl implements ProducerHandle {
+class DataPipeProducerHandleImpl extends HandleBase implements ProducerHandle {
/**
- * @see HandleImpl#HandleImpl(CoreImpl, int)
+ * @see HandleBase#HandleBase(CoreImpl, int)
*/
DataPipeProducerHandleImpl(CoreImpl core, int mojoHandle) {
super(core, mojoHandle);
}
/**
- * @see HandleImpl#HandleImpl(UntypedHandleImpl)
+ * @see HandleBase#HandleBase(HandleBase)
*/
DataPipeProducerHandleImpl(UntypedHandleImpl handle) {
super(handle);

Powered by Google App Engine
This is Rietveld 408576698