diff options
| author | Steve Block <steveblock@google.com> | 2010-09-28 10:44:17 +0100 |
|---|---|---|
| committer | Steve Block <steveblock@google.com> | 2010-09-28 12:32:05 +0100 |
| commit | 5c23ebadd48c8c3190878030a9974f1ff36b0419 (patch) | |
| tree | 891b90d6deb6c2284f501a6e023bf0efbceacd46 /core/java/android/webkit/WebViewDatabase.java | |
| parent | 1d9fc8c50452bb80c789e5c05e379855c33c0af0 (diff) | |
Update the storage locations used by the Chromium HTTP stack
This updates the strorage locations to better match those used by the
Android HTTP stack.
The corresponding external/webkit change is
https://android-git.corp.google.com/g/70643
Bug: 3039536
Change-Id: Ia7ea68d1472e96788a7fbaa6e8f7aa1ee51b3fb0
Diffstat (limited to 'core/java/android/webkit/WebViewDatabase.java')
| -rw-r--r-- | core/java/android/webkit/WebViewDatabase.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebViewDatabase.java b/core/java/android/webkit/WebViewDatabase.java index d7b4452ef66f..8f896789e8b7 100644 --- a/core/java/android/webkit/WebViewDatabase.java +++ b/core/java/android/webkit/WebViewDatabase.java @@ -67,6 +67,9 @@ public class WebViewDatabase { private final Object mFormLock = new Object(); private final Object mHttpAuthLock = new Object(); + // TODO: The Chromium HTTP stack handles cookies independently. + // We should consider removing the cookies table if and when we switch to + // the Chromium HTTP stack for good. private static final String mTableNames[] = { "cookies", "password", "formurl", "formdata", "httpauth" }; |
