1 // Copyright (c) 2012 The Chromium Authors. 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.
5 #include "chrome/browser/ui/android/javascript_app_modal_dialog_android.h"
7 #include "base/android/jni_android.h"
8 #include "base/android/jni_string.h"
9 #include "base/strings/utf_string_conversions.h"
11 #include "chrome/browser/browser_process.h"
12 #include "chrome/browser/ui/app_modal_dialogs/app_modal_dialog_queue.h"
13 #include "chrome/browser/ui/app_modal_dialogs/javascript_app_modal_dialog.h"
14 #include "content/public/browser/browser_thread.h"
15 #include "content/public/browser/web_contents.h"
16 #include "content/public/common/javascript_message_type.h"
17 #include "jni/JavascriptAppModalDialog_jni.h"
18 #include "ui/base/android/window_android.h"
20 using base::android::AttachCurrentThread
;
21 using base::android::ConvertUTF16ToJavaString
;
22 using base::android::ScopedJavaGlobalRef
;
23 using base::android::ScopedJavaLocalRef
;
24 using content::BrowserThread
;
27 NativeAppModalDialog
* NativeAppModalDialog::CreateNativeJavaScriptPrompt(
28 JavaScriptAppModalDialog
* dialog
,
29 gfx::NativeWindow parent_window
) {
30 return new JavascriptAppModalDialogAndroid(AttachCurrentThread(),
31 dialog
, parent_window
);
34 JavascriptAppModalDialogAndroid::JavascriptAppModalDialogAndroid(
36 JavaScriptAppModalDialog
* dialog
,
37 gfx::NativeWindow parent
)
39 parent_jobject_weak_ref_(env
, parent
->GetJavaObject().obj()) {
42 int JavascriptAppModalDialogAndroid::GetAppModalDialogButtons() const {
47 void JavascriptAppModalDialogAndroid::ShowAppModalDialog() {
48 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI
));
50 JNIEnv
* env
= AttachCurrentThread();
51 // Keep a strong ref to the parent window while we make the call to java to
52 // display the dialog.
53 ScopedJavaLocalRef
<jobject
> parent_jobj
= parent_jobject_weak_ref_
.get(env
);
54 if (parent_jobj
.is_null()) {
55 CancelAppModalDialog();
59 ScopedJavaLocalRef
<jobject
> dialog_object
;
60 ScopedJavaLocalRef
<jstring
> title
=
61 ConvertUTF16ToJavaString(env
, dialog_
->title());
62 ScopedJavaLocalRef
<jstring
> message
=
63 ConvertUTF16ToJavaString(env
, dialog_
->message_text());
65 switch (dialog_
->javascript_message_type()) {
66 case content::JAVASCRIPT_MESSAGE_TYPE_ALERT
: {
67 dialog_object
= Java_JavascriptAppModalDialog_createAlertDialog(env
,
68 title
.obj(), message
.obj(),
69 dialog_
->display_suppress_checkbox());
72 case content::JAVASCRIPT_MESSAGE_TYPE_CONFIRM
: {
73 if (dialog_
->is_before_unload_dialog()) {
74 dialog_object
= Java_JavascriptAppModalDialog_createBeforeUnloadDialog(
75 env
, title
.obj(), message
.obj(), dialog_
->is_reload(),
76 dialog_
->display_suppress_checkbox());
78 dialog_object
= Java_JavascriptAppModalDialog_createConfirmDialog(env
,
79 title
.obj(), message
.obj(),
80 dialog_
->display_suppress_checkbox());
84 case content::JAVASCRIPT_MESSAGE_TYPE_PROMPT
: {
85 ScopedJavaLocalRef
<jstring
> default_prompt_text
=
86 ConvertUTF16ToJavaString(env
, dialog_
->default_prompt_text());
87 dialog_object
= Java_JavascriptAppModalDialog_createPromptDialog(env
,
88 title
.obj(), message
.obj(),
89 dialog_
->display_suppress_checkbox(), default_prompt_text
.obj());
96 // Keep a ref to the java side object until we get a confirm or cancel.
97 dialog_jobject_
.Reset(dialog_object
);
99 Java_JavascriptAppModalDialog_showJavascriptAppModalDialog(env
,
100 dialog_object
.obj(), parent_jobj
.obj(),
101 reinterpret_cast<intptr_t>(this));
104 void JavascriptAppModalDialogAndroid::ActivateAppModalDialog() {
105 ShowAppModalDialog();
108 void JavascriptAppModalDialogAndroid::CloseAppModalDialog() {
109 CancelAppModalDialog();
112 void JavascriptAppModalDialogAndroid::AcceptAppModalDialog() {
113 base::string16 prompt_text
;
114 dialog_
->OnAccept(prompt_text
, false);
118 void JavascriptAppModalDialogAndroid::DidAcceptAppModalDialog(
119 JNIEnv
* env
, jobject
, jstring prompt
, bool should_suppress_js_dialogs
) {
120 base::string16 prompt_text
=
121 base::android::ConvertJavaStringToUTF16(env
, prompt
);
122 dialog_
->OnAccept(prompt_text
, should_suppress_js_dialogs
);
126 void JavascriptAppModalDialogAndroid::CancelAppModalDialog() {
127 dialog_
->OnCancel(false);
131 void JavascriptAppModalDialogAndroid::DidCancelAppModalDialog(
132 JNIEnv
* env
, jobject
, bool should_suppress_js_dialogs
) {
133 dialog_
->OnCancel(should_suppress_js_dialogs
);
137 const ScopedJavaGlobalRef
<jobject
>&
138 JavascriptAppModalDialogAndroid::GetDialogObject() const {
139 return dialog_jobject_
;
143 jobject
GetCurrentModalDialog(JNIEnv
* env
, jclass clazz
) {
144 AppModalDialog
* dialog
= AppModalDialogQueue::GetInstance()->active_dialog();
145 if (!dialog
|| !dialog
->native_dialog())
148 JavascriptAppModalDialogAndroid
* js_dialog
=
149 static_cast<JavascriptAppModalDialogAndroid
*>(dialog
->native_dialog());
150 return js_dialog
->GetDialogObject().obj();
154 bool JavascriptAppModalDialogAndroid::RegisterJavascriptAppModalDialog(
156 return RegisterNativesImpl(env
);
159 JavascriptAppModalDialogAndroid::~JavascriptAppModalDialogAndroid() {
160 JNIEnv
* env
= AttachCurrentThread();
161 // In case the dialog is still displaying, tell it to close itself.
162 // This can happen if you trigger a dialog but close the Tab before it's
163 // shown, and then accept the dialog.
164 if (!dialog_jobject_
.is_null())
165 Java_JavascriptAppModalDialog_dismiss(env
, dialog_jobject_
.obj());