blob: 79b7406ec2c6e4521565214bb618320e4717037c (
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
49
50
51
52
53
54
|
// 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.
#ifndef ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
#define ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
#include <jni.h>
#include <string>
#include "android_webview/browser/aw_login_delegate.h"
#include "android_webview/browser/aw_http_auth_handler_base.h"
#include "base/android/jni_android.h"
#include "base/android/scoped_java_ref.h"
#include "base/memory/ref_counted.h"
namespace content {
class WebContents;
};
namespace net {
class AuthChallengeInfo;
};
namespace android_webview {
// Native class for Java class of same name and owns an instance
// of that Java object.
// One instance of this class is created per underlying AwLoginDelegate.
class AwHttpAuthHandler : public AwHttpAuthHandlerBase {
public:
AwHttpAuthHandler(AwLoginDelegate* login_delegate,
net::AuthChallengeInfo* auth_info,
bool first_auth_attempt);
~AwHttpAuthHandler() override;
// from AwHttpAuthHandler
bool HandleOnUIThread(content::WebContents* web_contents) override;
void Proceed(JNIEnv* env, jobject obj, jstring username, jstring password);
void Cancel(JNIEnv* env, jobject obj);
private:
scoped_refptr<AwLoginDelegate> login_delegate_;
base::android::ScopedJavaGlobalRef<jobject> http_auth_handler_;
std::string host_;
std::string realm_;
};
bool RegisterAwHttpAuthHandler(JNIEnv* env);
} // namespace android_webview
#endif // ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
|