Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1029)

Unified Diff: android_webview/browser/aw_http_auth_handler_base.h

Issue 2884353003: [WebView] Remove more redundant classes (Closed)
Patch Set: add missing header Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/browser/aw_http_auth_handler_base.h
diff --git a/android_webview/browser/aw_http_auth_handler_base.h b/android_webview/browser/aw_http_auth_handler_base.h
deleted file mode 100644
index e72003b2a6f819b4cd146acefb8cc809649701cb..0000000000000000000000000000000000000000
--- a/android_webview/browser/aw_http_auth_handler_base.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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_BROWSER_AW_HTTP_AUTH_HANDLER_BASE_H_
-#define ANDROID_WEBVIEW_BROWSER_AW_HTTP_AUTH_HANDLER_BASE_H_
-
-namespace content {
-class WebContents;
-};
-
-namespace net {
-class AuthChallengeInfo;
-};
-
-namespace android_webview {
-
-class AwLoginDelegate;
-
-// browser/ layer interface for AwHttpAuthHandler (which is implemented in the
-// native/ layer as a native version of the Java class of the same name). This
-// allows the browser/ layer to be unaware of JNI/Java shenanigans.
-class AwHttpAuthHandlerBase {
- public:
- static AwHttpAuthHandlerBase* Create(AwLoginDelegate* login_delegate,
- net::AuthChallengeInfo* auth_info,
- bool first_auth_attempt);
- virtual ~AwHttpAuthHandlerBase();
-
- // Provides an 'escape-hatch' out to Java for the browser/ layer
- // AwLoginDelegate.
- virtual bool HandleOnUIThread(content::WebContents*) = 0;
-};
-
-} // namespace android_webview
-
-#endif // ANDROID_WEBVIEW_BROWSER_AW_HTTP_AUTH_HANDLER_BASE_H_
« no previous file with comments | « android_webview/browser/aw_http_auth_handler.cc ('k') | android_webview/browser/aw_http_auth_handler_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698