OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 package org.chromium.net; | |
6 | |
7 /** | |
8 * Async request using the native http stack implementation. | |
mmenke
2014/09/03 21:19:20
nit: HTTP?
mef
2014/09/03 21:55:39
Done.
| |
9 */ | |
10 public class ChromiumAsyncUrlRequest implements AsyncUrlRequest { | |
11 @Override | |
12 public void setHttpMethod(String method) { | |
13 | |
14 } | |
15 | |
16 @Override | |
17 public void addHeader(String header, String value) { | |
18 | |
19 } | |
20 | |
21 @Override | |
22 public void start(AsyncUrlRequestListener listener) { | |
23 | |
24 } | |
25 | |
26 @Override | |
27 public void cancel() { | |
28 | |
29 } | |
30 | |
31 @Override | |
32 public boolean isCanceled() { | |
33 return false; | |
34 } | |
35 | |
36 @Override | |
37 public void pause() { | |
38 | |
39 } | |
40 | |
41 @Override | |
42 public boolean isPaused() { | |
43 return false; | |
44 } | |
45 | |
46 @Override | |
47 public void resume() { | |
48 | |
49 } | |
50 } | |
OLD | NEW |