Upstream version 5.34.97.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core / src / org / xwalk / core / DownloadListener.java
1 // Copyright (c) 2013 Intel Corporation. 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.xwalk.core;
6
7 public interface DownloadListener {
8
9     public abstract void onDownloadStart(String url, String userAgent,
10             String contentDisposition, String mimetype, long contentLength);
11 }