summaryrefslogtreecommitdiffstats
path: root/android_webview/native/js_result_handler.cc
blob: 56d57dc8a7260a70b69183def9606190f8048b2f (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2012 The Chromium 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 "android_webview/native/js_result_handler.h"

#include "base/android/jni_string.h"
#include "jni/JsResultHandler_jni.h"
#include "content/public/browser/javascript_dialogs.h"
#include "content/public/browser/android/content_view_core.h"

using base::android::ConvertJavaStringToUTF16;
using content::ContentViewCore;

namespace android_webview {

void ConfirmJsResult(JNIEnv* env,
                     jobject obj,
                     jint dialogPointer,
                     jstring promptResult) {
  content::JavaScriptDialogCreator::DialogClosedCallback* dialog_ =
      reinterpret_cast<content::JavaScriptDialogCreator::DialogClosedCallback*>(
          dialogPointer);
  string16 prompt_text;
  if (promptResult) {
    prompt_text = ConvertJavaStringToUTF16(env, promptResult);
  }
  dialog_->Run(true,prompt_text);
}

void CancelJsResult(JNIEnv* env, jobject obj, jint dialogPointer) {
  content::JavaScriptDialogCreator::DialogClosedCallback* dialog_ =
      reinterpret_cast<content::JavaScriptDialogCreator::DialogClosedCallback*>(
          dialogPointer);
  dialog_->Run(false, string16());
}

base::android::ScopedJavaLocalRef<jobject> createJsResultHandler(
    JNIEnv* env,
    const content::JavaScriptDialogCreator::DialogClosedCallback* dialog) {
  return Java_JsResultHandler_create(env, reinterpret_cast<jint>(dialog));
}

bool RegisterJsResultHandler(JNIEnv* env) {
  return RegisterNativesImpl(env);
}

}  // namespace android_webview