| Index: components/cronet/android/api/src/org/chromium/net/ExperimentalBidirectionalStream.java
|
| diff --git a/components/cronet/android/api/src/org/chromium/net/ExperimentalBidirectionalStream.java b/components/cronet/android/api/src/org/chromium/net/ExperimentalBidirectionalStream.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bf6b5d4d6522e70275d2705d62b44ffde98b66ae
|
| --- /dev/null
|
| +++ b/components/cronet/android/api/src/org/chromium/net/ExperimentalBidirectionalStream.java
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package org.chromium.net;
|
| +
|
| +/**
|
| + * {@link BidirectionalStream} that exposes experimental features.
|
| + * Created using {@link ExperimentalBidirectionalStream.Builder}.
|
| + */
|
| +public abstract class ExperimentalBidirectionalStream extends BidirectionalStream {
|
| + /**
|
| + * Builder for {@link ExperimentalBidirectionalStream}s. Allows configuring stream before
|
| + * constructing it via {@link Builder#build}.
|
| + */
|
| + public abstract static class Builder extends BidirectionalStream.Builder {}
|
| +}
|
|
|