Home
last modified time | relevance | path

Searched refs:AuthCallbackImpl (Results 1 – 2 of 2) sorted by relevance

/third_party/cef/libcef/browser/net_service/
Dlogin_delegate.cc20 class AuthCallbackImpl : public CefAuthCallback { class
22 explicit AuthCallbackImpl(base::WeakPtr<LoginDelegate> delegate) in AuthCallbackImpl() function in net_service::__anon83eb46330111::AuthCallbackImpl
26 AuthCallbackImpl(const AuthCallbackImpl&) = delete;
27 AuthCallbackImpl& operator=(const AuthCallbackImpl&) = delete;
29 ~AuthCallbackImpl() override { in ~AuthCallbackImpl()
40 FROM_HERE, base::BindOnce(&AuthCallbackImpl::Continue, this, username, in Continue()
54 base::BindOnce(&AuthCallbackImpl::Cancel, this)); in Cancel()
68 IMPLEMENT_REFCOUNTING(AuthCallbackImpl);
76 CefRefPtr<AuthCallbackImpl> callback_impl) { in RunCallbackOnIOThread()
161 CefRefPtr<AuthCallbackImpl> callbackImpl = in Start()
[all …]
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch18440 class AuthCallbackImpl : public CefAuthCallback {
18442 - explicit AuthCallbackImpl(base::WeakPtr<LoginDelegate> delegate)
18443 + explicit AuthCallbackImpl(base::WeakPtr<LoginDelegate> delegate,
18451 AuthCallbackImpl(const AuthCallbackImpl&) = delete;
18452 @@ -61,8 +67,40 @@ class AuthCallbackImpl : public CefAuthCallback {
18474 + FROM_HERE, base::BindOnce(&AuthCallbackImpl::Continue, this, username,
18492 IMPLEMENT_REFCOUNTING(AuthCallbackImpl);
18495 // AuthCallbackImpl is bound to the current thread.
18496 CefRefPtr<AuthCallbackImpl> callbackImpl =
18497 - new AuthCallbackImpl(weak_ptr_factory_.GetWeakPtr());
[all …]