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

Side by Side Diff: components/cronet/android/api/src/org/chromium/net/ICronetEngineBuilder.java

Issue 2876253002: [Cronet] Add ExperimentalCronetEngine.Builder.setThreadPriority() API (Closed)
Patch Set: shutdown CronetEngines in test Created 3 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 unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698