Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / net / cronet / android / java / src / org / chromium / net / HttpUrlRequestListener.java
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  * Callback interface.
9  */
10 public interface HttpUrlRequestListener {
11     /**
12      * The listener should completely process the response in the callback
13      * method. Immediately after the callback, the request object will be
14      * recycled.
15      */
16     void onRequestComplete(HttpUrlRequest request);
17 }