| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.net; | 5 package org.chromium.net; |
| 6 | 6 |
| 7 import android.content.Context; | 7 import android.content.Context; |
| 8 import android.os.ConditionVariable; | 8 import android.os.ConditionVariable; |
| 9 | 9 |
| 10 import org.chromium.base.CalledByNative; | 10 import org.chromium.base.annotations.CalledByNative; |
| 11 import org.chromium.base.JNINamespace; | 11 import org.chromium.base.annotations.JNINamespace; |
| 12 | 12 |
| 13 /** | 13 /** |
| 14 * Wrapper class to start an in-process native test server, and get URLs | 14 * Wrapper class to start an in-process native test server, and get URLs |
| 15 * needed to talk to it. | 15 * needed to talk to it. |
| 16 */ | 16 */ |
| 17 @JNINamespace("cronet") | 17 @JNINamespace("cronet") |
| 18 public final class NativeTestServer { | 18 public final class NativeTestServer { |
| 19 private static final ConditionVariable sHostResolverBlock = new ConditionVar
iable(); | 19 private static final ConditionVariable sHostResolverBlock = new ConditionVar
iable(); |
| 20 | 20 |
| 21 // This variable contains the response body of a request to getSuccessURL(). | 21 // This variable contains the response body of a request to getSuccessURL(). |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 private static native String nativeGetEchoBodyURL(); | 111 private static native String nativeGetEchoBodyURL(); |
| 112 private static native String nativeGetEchoHeaderURL(String header); | 112 private static native String nativeGetEchoHeaderURL(String header); |
| 113 private static native String nativeGetEchoAllHeadersURL(); | 113 private static native String nativeGetEchoAllHeadersURL(); |
| 114 private static native String nativeGetEchoMethodURL(); | 114 private static native String nativeGetEchoMethodURL(); |
| 115 private static native String nativeGetRedirectToEchoBody(); | 115 private static native String nativeGetRedirectToEchoBody(); |
| 116 private static native String nativeGetFileURL(String filePath); | 116 private static native String nativeGetFileURL(String filePath); |
| 117 private static native String nativeGetSdchURL(); | 117 private static native String nativeGetSdchURL(); |
| 118 private static native String nativeGetHostPort(); | 118 private static native String nativeGetHostPort(); |
| 119 private static native boolean nativeIsDataReductionProxySupported(); | 119 private static native boolean nativeIsDataReductionProxySupported(); |
| 120 } | 120 } |
| OLD | NEW |