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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwContents.java

Issue 2366023002: Add WebViewDatabaseAdapter#{get,set}HttpAuthUsernamePassword (Closed)
Patch Set: Fixing errors Created 4 years, 3 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/java/src/org/chromium/android_webview/AwContents.java
diff --git a/android_webview/java/src/org/chromium/android_webview/AwContents.java b/android_webview/java/src/org/chromium/android_webview/AwContents.java
index b2a2c2d659fa6921a0e9d5c68de00e15dd12d027..e80d8c392804ed6f620ba7237017574bcec50cc4 100644
--- a/android_webview/java/src/org/chromium/android_webview/AwContents.java
+++ b/android_webview/java/src/org/chromium/android_webview/AwContents.java
@@ -2011,19 +2011,6 @@ public class AwContents implements SmartClipProvider,
if (!isDestroyed(WARN)) mNavigationController.clearHistory();
}
- public String[] getHttpAuthUsernamePassword(String host, String realm) {
- return mBrowserContext.getHttpAuthDatabase(mContext)
- .getHttpAuthUsernamePassword(host, realm);
- }
-
- public void setHttpAuthUsernamePassword(String host, String realm, String username,
- String password) {
- if (TRACE) Log.i(TAG, "%s setHttpAuthUsernamePassword=%s", this, host);
sgurun-gerrit only 2016/09/23 23:26:47 himm, so we are losing this trace. Not too importa
- if (isDestroyed(WARN)) return;
- mBrowserContext.getHttpAuthDatabase(mContext)
- .setHttpAuthUsernamePassword(host, realm, username, password);
- }
-
/**
* @see android.webkit.WebView#getCertificate()
*/

Powered by Google App Engine
This is Rietveld 408576698