aboutsummaryrefslogtreecommitdiff
path: root/java/org/cef/callback/CefRunFileDialogCallback.java
blob: f40000a9583c9a5b92c8cfba00f963537009b298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2014 The Chromium Embedded Framework 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.cef.callback;

import java.util.Vector;
import org.cef.browser.CefBrowser;

/**
 * Callback interface for CefBrowserHost::RunFileDialog. The methods of this
 * class will be called on the browser process UI thread.
 */
public interface CefRunFileDialogCallback {
    /**
     * Called asynchronously after the file dialog is dismissed. If the selection
     * was successful filePaths will be a single value or a list of values
     * depending on the dialog mode. If the selection was cancelled filePaths
     * will be empty.
     *
     * @param filePaths list of file paths or empty list.
     */
    void onFileDialogDismissed(Vector<String> filePaths);
}