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

Issue 2366023002: Add WebViewDatabaseAdapter#{get,set}HttpAuthUsernamePassword (Closed)

Created:
4 years, 2 months ago by Nate Fischer
Modified:
4 years, 2 months ago
CC:
android-webview-reviews_chromium.org, chromium-reviews
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add WebViewDatabaseAdapter#{get,set}HttpAuthUsernamePassword Add these methods to WebViewDatabaseAdapter so that they can be moved to Android's WebViewDatabase and the methods in WebView can be deprecated. BUG=649816 Committed: https://crrev.com/a1d96e37797afcf6dec6e3967160e1f2f2ede198 Cr-Commit-Position: refs/heads/master@{#421029}

Patch Set 1 #

Patch Set 2 : Removing methods in Awcontents #

Patch Set 3 : Fixing errors #

Total comments: 4

Patch Set 4 : Modified TODOs #

Total comments: 1

Patch Set 5 : Removing overrides #

Patch Set 6 : Add note about when to remove the old functions #

Total comments: 2

Patch Set 7 : Adding @Override back #

Patch Set 8 : No-op for targeting O+ #

Total comments: 2

Patch Set 9 : Revert no-op #

Unified diffs Side-by-side diffs Delta from patch set Stats (+32 lines, -15 lines) Patch
M android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java View 1 5 6 8 2 chunks +4 lines, -2 lines 0 comments Download
M android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java View 1 2 3 1 chunk +28 lines, -0 lines 0 comments Download
M android_webview/java/src/org/chromium/android_webview/AwContents.java View 1 1 chunk +0 lines, -13 lines 0 comments Download

Messages

Total messages: 24 (6 generated)
Nate Fischer
PTAL
4 years, 2 months ago (2016-09-23 22:43:27 UTC) #3
sgurun-gerrit only
On 2016/09/23 22:43:27, Nate Fischer wrote: > PTAL it is generally a good idea to ...
4 years, 2 months ago (2016-09-23 23:26:40 UTC) #5
sgurun-gerrit only
https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java (right): https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java#newcode85 android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java:85: // TODO(ntfschr): add @Override once this is added in ...
4 years, 2 months ago (2016-09-23 23:26:47 UTC) #6
Nate Fischer
https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java (right): https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java#newcode85 android_webview/glue/java/src/com/android/webview/chromium/WebViewDatabaseAdapter.java:85: // TODO(ntfschr): add @Override once this is added in ...
4 years, 2 months ago (2016-09-23 23:29:44 UTC) #7
sgurun-gerrit only
https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode376 android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java:376: ((WebViewDatabaseAdapter) mFactory.getWebViewDatabase(mContext)) why is casting necessary here?
4 years, 2 months ago (2016-09-24 01:40:42 UTC) #8
sgurun-gerrit only
On 2016/09/24 01:40:42, sgurun wrote: > https://codereview.chromium.org/2366023002/diff/40001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java > File > android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java > (right): > > ...
4 years, 2 months ago (2016-09-24 01:42:17 UTC) #9
sgurun-gerrit only
https://codereview.chromium.org/2366023002/diff/60001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): https://codereview.chromium.org/2366023002/diff/60001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode364 android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java:364: @Override please remove override's here as we now can ...
4 years, 2 months ago (2016-09-24 01:45:18 UTC) #10
Nate Fischer
On 2016/09/24 at 01:45:18, sgurun wrote: > https://codereview.chromium.org/2366023002/diff/60001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java > File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): > > https://codereview.chromium.org/2366023002/diff/60001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode364 ...
4 years, 2 months ago (2016-09-24 02:04:55 UTC) #11
sgurun-gerrit only
On 2016/09/24 02:04:55, Nate Fischer wrote: > On 2016/09/24 at 01:45:18, sgurun wrote: > > ...
4 years, 2 months ago (2016-09-24 02:16:23 UTC) #12
sgurun-gerrit only
On 2016/09/24 02:16:23, sgurun wrote: > On 2016/09/24 02:04:55, Nate Fischer wrote: > > On ...
4 years, 2 months ago (2016-09-24 21:15:14 UTC) #13
hush (inactive)
https://codereview.chromium.org/2366023002/diff/100001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): https://codereview.chromium.org/2366023002/diff/100001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode364 android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java:364: // TODO(ntfschr): remove these functions once API 25 and ...
4 years, 2 months ago (2016-09-26 17:29:20 UTC) #14
Nate Fischer
On 2016/09/26 at 17:29:20, hush wrote: > https://codereview.chromium.org/2366023002/diff/100001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java > File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): > > https://codereview.chromium.org/2366023002/diff/100001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode364 ...
4 years, 2 months ago (2016-09-26 18:13:38 UTC) #15
Nate Fischer
https://codereview.chromium.org/2366023002/diff/140001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): https://codereview.chromium.org/2366023002/diff/140001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java#newcode367 android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java:367: if (mAppTargetSdkVersion > Build.VERSION_CODES.N) return; I've implemented the no-op ...
4 years, 2 months ago (2016-09-26 20:29:38 UTC) #16
Nate Fischer
On 2016/09/26 at 20:29:38, Nate Fischer wrote: > https://codereview.chromium.org/2366023002/diff/140001/android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java > File android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java (right): > > ...
4 years, 2 months ago (2016-09-26 21:18:56 UTC) #17
sgurun-gerrit only
On 2016/09/26 21:18:56, Nate Fischer wrote: > On 2016/09/26 at 20:29:38, Nate Fischer wrote: > ...
4 years, 2 months ago (2016-09-26 21:47:41 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2366023002/160001
4 years, 2 months ago (2016-09-26 21:48:57 UTC) #21
commit-bot: I haz the power
Committed patchset #9 (id:160001)
4 years, 2 months ago (2016-09-26 23:00:15 UTC) #22
commit-bot: I haz the power
4 years, 2 months ago (2016-09-26 23:02:36 UTC) #24
Message was sent while issue was closed.
Patchset 9 (id:??) landed as
https://crrev.com/a1d96e37797afcf6dec6e3967160e1f2f2ede198
Cr-Commit-Position: refs/heads/master@{#421029}

Powered by Google App Engine
This is Rietveld 408576698