5c85038ce2597df4c7a6c8041926c85376a168f7
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / java / 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 }