forked from chromiumembedded/java-cef
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCefBeforeDownloadCallback_N.cpp
More file actions
37 lines (31 loc) · 1.13 KB
/
CefBeforeDownloadCallback_N.cpp
File metadata and controls
37 lines (31 loc) · 1.13 KB
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
37
// 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.
#include "CefBeforeDownloadCallback_N.h"
#include "include/cef_download_handler.h"
#include "jni_scoped_helpers.h"
#include "jni_util.h"
namespace {
CefRefPtr<CefBeforeDownloadCallback> GetSelf(jlong self) {
return reinterpret_cast<CefBeforeDownloadCallback*>(self);
}
void ClearSelf(JNIEnv* env, jobject obj) {
// Clear the reference added in DownloadHandler::OnBeforeDownload.
SetCefForJNIObject<CefBeforeDownloadCallback>(env, obj, nullptr,
"CefBeforeDownloadCallback");
}
} // namespace
JNIEXPORT void JNICALL
Java_org_cef_callback_CefBeforeDownloadCallback_1N_N_1Continue(
JNIEnv* env,
jobject obj,
jlong self,
jstring jdownloadPath,
jboolean jshowDialog) {
CefRefPtr<CefBeforeDownloadCallback> callback = GetSelf(self);
if (!callback)
return;
callback->Continue(GetJNIString(env, jdownloadPath),
jshowDialog != JNI_FALSE);
ClearSelf(env, obj);
}