Chromium Code Reviews| 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 static junit.framework.Assert.assertTrue; | 7 import static junit.framework.Assert.assertTrue; |
| 8 | 8 |
| 9 import org.chromium.base.annotations.JNINamespace; | 9 import org.chromium.base.annotations.JNINamespace; |
| 10 import org.chromium.net.test.FailurePhase; | 10 import org.chromium.net.test.FailurePhase; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 * times. | 47 * times. |
| 48 * | 48 * |
| 49 * @param data to return in response. | 49 * @param data to return in response. |
| 50 * @param dataRepeatCount number of times to repeat the data. | 50 * @param dataRepeatCount number of times to repeat the data. |
| 51 */ | 51 */ |
| 52 public static String getMockUrlForData(String data, int dataRepeatCount) { | 52 public static String getMockUrlForData(String data, int dataRepeatCount) { |
| 53 return nativeGetMockUrlForData(data, dataRepeatCount); | 53 return nativeGetMockUrlForData(data, dataRepeatCount); |
| 54 } | 54 } |
| 55 | 55 |
| 56 /** | 56 /** |
| 57 * Constructs a mock URL that will request Client Certificate. | |
|
xunjieli
2015/11/20 21:04:25
nit: maybe not capitalize client certificate?
s/Cl
mef
2015/11/20 22:01:23
Done.
| |
| 58 */ | |
| 59 public static String getMockUrlForClientCertificateRequest() { | |
| 60 return nativeGetMockUrlForClientCertificateRequest(); | |
| 61 } | |
| 62 | |
| 63 /** | |
| 57 * Constructs a mock URL that will fail with an SSL certificate error. | 64 * Constructs a mock URL that will fail with an SSL certificate error. |
| 58 */ | 65 */ |
| 59 public static String getMockUrlForSSLCertificateError() { | 66 public static String getMockUrlForSSLCertificateError() { |
| 60 return nativeGetMockUrlForSSLCertificateError(); | 67 return nativeGetMockUrlForSSLCertificateError(); |
| 61 } | 68 } |
| 62 | 69 |
| 63 private static native void nativeAddUrlInterceptors(); | 70 private static native void nativeAddUrlInterceptors(); |
| 64 | 71 |
| 65 private static native String nativeGetMockUrlWithFailure(int phase, int netE rror); | 72 private static native String nativeGetMockUrlWithFailure(int phase, int netE rror); |
| 66 | 73 |
| 67 private static native String nativeGetMockUrlForData(String data, | 74 private static native String nativeGetMockUrlForData(String data, |
| 68 int dataRepeatCount); | 75 int dataRepeatCount); |
| 69 | 76 |
| 77 private static native String nativeGetMockUrlForClientCertificateRequest(); | |
| 78 | |
| 70 private static native String nativeGetMockUrlForSSLCertificateError(); | 79 private static native String nativeGetMockUrlForSSLCertificateError(); |
| 71 } | 80 } |
| OLD | NEW |