-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathdialog_handler.h
36 lines (28 loc) · 1.24 KB
/
dialog_handler.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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.
#ifndef JCEF_NATIVE_DIALOG_HANDLER_H_
#define JCEF_NATIVE_DIALOG_HANDLER_H_
#pragma once
#include <jni.h>
#include "include/cef_dialog_handler.h"
#include "jni_scoped_helpers.h"
// DialogHandler implementation.
class DialogHandler : public CefDialogHandler {
public:
DialogHandler(JNIEnv* env, jobject handler);
// CefDialogHandler methods
virtual bool OnFileDialog(CefRefPtr<CefBrowser> browser,
FileDialogMode mode,
const CefString& title,
const CefString& default_file_path,
const std::vector<CefString>& accept_filters,
const std::vector<CefString>& accept_extensions,
const std::vector<CefString>& accept_descriptions,
CefRefPtr<CefFileDialogCallback> callback) override;
protected:
ScopedJNIObjectGlobal handle_;
// Include the default reference counting implementation.
IMPLEMENT_REFCOUNTING(DialogHandler);
};
#endif // JCEF_NATIVE_DIALOG_HANDLER_H_