// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.net;
/**
* Callback interface.
*/
public interface HttpUrlRequestListener {
/**
* The listener should completely process the response in the callback
* method. Immediately after the callback, the request object will be
* recycled.
*/
void onRequestComplete(HttpUrlRequest request);
}