| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 package org.chromium.net; | 4 package org.chromium.net; |
| 5 | 5 |
| 6 import java.util.Date; | 6 import java.util.Date; |
| 7 import java.util.Set; | 7 import java.util.Set; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * Defines methods that the actual implementation of {@link CronetEngine.Builder
} has to implement. | 10 * Defines methods that the actual implementation of {@link CronetEngine.Builder
} has to implement. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // the client. | 45 // the client. |
| 46 | 46 |
| 47 public ICronetEngineBuilder enableNetworkQualityEstimator(boolean value) { | 47 public ICronetEngineBuilder enableNetworkQualityEstimator(boolean value) { |
| 48 return this; | 48 return this; |
| 49 } | 49 } |
| 50 | 50 |
| 51 public ICronetEngineBuilder setCertVerifierData(String certVerifierData) { | 51 public ICronetEngineBuilder setCertVerifierData(String certVerifierData) { |
| 52 return this; | 52 return this; |
| 53 } | 53 } |
| 54 | 54 |
| 55 public ICronetEngineBuilder setThreadPriority(int priority) { |
| 56 return this; |
| 57 } |
| 55 } | 58 } |
| OLD | NEW |