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

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

Issue 2366023002: Add WebViewDatabaseAdapter#{get,set}HttpAuthUsernamePassword (Closed)
Patch Set: Revert no-op 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
« no previous file with comments | « android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
- if (isDestroyed(WARN)) return;
- mBrowserContext.getHttpAuthDatabase(mContext)
- .setHttpAuthUsernamePassword(host, realm, username, password);
- }
-
/**
* @see android.webkit.WebView#getCertificate()
*/
« no previous file with comments | « android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698