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

Issue 2386513002: Implement getWebViewClient and getWebChromeClient (Closed)

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

Description

Implement getWebViewClient and getWebChromeClient Implement getWebViewClient and getWebChromeClient for new APIs in Android BUG=627248 Committed: https://crrev.com/ea0215bc645133a998e8b3e0f8cf49e609e7aaf3 Cr-Commit-Position: refs/heads/master@{#422183}

Patch Set 1 #

Total comments: 3

Patch Set 2 : Return null instead of sNullWebViewClient #

Total comments: 2

Patch Set 3 : Fixing error #

Unified diffs Side-by-side diffs Delta from patch set Stats (+19 lines, -0 lines) Patch
M android_webview/glue/java/src/com/android/webview/chromium/WebViewChromium.java View 2 chunks +10 lines, -0 lines 0 comments Download
M android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java View 1 2 1 chunk +9 lines, -0 lines 0 comments Download

Messages

Total messages: 23 (6 generated)
Nate Fischer
PTAL
4 years, 2 months ago (2016-09-30 01:24:37 UTC) #3
Nate Fischer
sgurun@: Here's the implementation of the changes. If you could review for owners approval, that ...
4 years, 2 months ago (2016-09-30 01:38:27 UTC) #5
hush (inactive)
lgtm
4 years, 2 months ago (2016-09-30 01:57:08 UTC) #6
Nate Fischer
On 2016/09/30 at 01:57:08, hush wrote: > lgtm sgurun@: does this look good to you?
4 years, 2 months ago (2016-09-30 17:45:17 UTC) #7
sgurun-gerrit only
https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java (right): https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java#newcode175 android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java:175: return mWebViewClient; what does this return if no webviewclient ...
4 years, 2 months ago (2016-09-30 17:55:24 UTC) #8
hush (inactive)
https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java (right): https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java#newcode175 android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java:175: return mWebViewClient; On 2016/09/30 at 17:55:23, sgurun wrote: > ...
4 years, 2 months ago (2016-09-30 18:01:26 UTC) #9
Nate Fischer
https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java (right): https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java#newcode175 android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java:175: return mWebViewClient; On 2016/09/30 at 17:55:23, sgurun wrote: > ...
4 years, 2 months ago (2016-09-30 18:02:09 UTC) #10
sgurun-gerrit only
On 2016/09/30 18:02:09, Nate Fischer wrote: > https://codereview.chromium.org/2386513002/diff/1/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java > File > android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java > (right): > ...
4 years, 2 months ago (2016-09-30 18:11:48 UTC) #11
sgurun-gerrit only
On 2016/09/30 18:11:48, sgurun wrote: > On 2016/09/30 18:02:09, Nate Fischer wrote: > > > ...
4 years, 2 months ago (2016-09-30 18:12:52 UTC) #12
Nate Fischer
On 2016/09/30 at 18:12:52, sgurun wrote: > On 2016/09/30 18:11:48, sgurun wrote: > > On ...
4 years, 2 months ago (2016-09-30 18:13:42 UTC) #13
Nate Fischer
On 2016/09/30 at 18:13:42, Nate Fischer wrote: > On 2016/09/30 at 18:12:52, sgurun wrote: > ...
4 years, 2 months ago (2016-09-30 18:29:35 UTC) #14
hush (inactive)
https://codereview.chromium.org/2386513002/diff/20001/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java (right): https://codereview.chromium.org/2386513002/diff/20001/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java#newcode176 android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java:176: return mWebViewClient == sNullWebViewClient ? null : mWebView; you ...
4 years, 2 months ago (2016-09-30 18:33:10 UTC) #15
Nate Fischer
https://codereview.chromium.org/2386513002/diff/20001/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java File android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java (right): https://codereview.chromium.org/2386513002/diff/20001/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java#newcode176 android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java:176: return mWebViewClient == sNullWebViewClient ? null : mWebView; On ...
4 years, 2 months ago (2016-09-30 18:40:21 UTC) #16
sgurun-gerrit only
On 2016/09/30 18:40:21, Nate Fischer wrote: > https://codereview.chromium.org/2386513002/diff/20001/android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java > File > android_webview/glue/java/src/com/android/webview/chromium/WebViewContentsClientAdapter.java > (right): > ...
4 years, 2 months ago (2016-09-30 19:06:17 UTC) #17
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/2386513002/40001
4 years, 2 months ago (2016-09-30 19:09:30 UTC) #20
commit-bot: I haz the power
Committed patchset #3 (id:40001)
4 years, 2 months ago (2016-09-30 19:36:07 UTC) #21
commit-bot: I haz the power
4 years, 2 months ago (2016-09-30 19:40:12 UTC) #23
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/ea0215bc645133a998e8b3e0f8cf49e609e7aaf3
Cr-Commit-Position: refs/heads/master@{#422183}

Powered by Google App Engine
This is Rietveld 408576698