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

Issue 2889193004: [WebView] Replace AwContentsIoThreadClient, InputStream and AwWebResourceResponse (Closed)

Created:
3 years, 7 months ago by Shimi Zhang
Modified:
3 years, 7 months ago
Reviewers:
boliu
CC:
chromium-reviews, cbentzel+watch_chromium.org, android-webview-reviews_chromium.org, net-reviews_chromium.org
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

[WebView] Replace AwContentsIoThreadClient, InputStream and AwWebResourceResponse This CL: 1) Replaced AwContentsIoThreadClient with AwContentsIoThreadClientImpl 2) Replaced InputStream with InputStreamImpl 3) Replaced AwWebResourceResponse with AwWebResourceResponseImpl, and moved implementation into browser/net/. Replacing them due to the merge of native/ and browser/ BUG=716604 Review-Url: https://codereview.chromium.org/2889193004 Cr-Commit-Position: refs/heads/master@{#473769} Committed: https://chromium.googlesource.com/chromium/src/+/e9928ffd65c7b5def5a8a5af659ab647f437e3b8

Patch Set 1 #

Patch Set 2 : move aw_web_resource_response_impl.{h,cc} #

Patch Set 3 : fix test crash #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+158 lines, -925 lines) Patch
M android_webview/BUILD.gn View 1 4 chunks +3 lines, -6 lines 0 comments Download
M android_webview/browser/android_protocol_handler.cc View 4 chunks +4 lines, -5 lines 0 comments Download
M android_webview/browser/aw_contents.cc View 2 chunks +2 lines, -3 lines 0 comments Download
M android_webview/browser/aw_contents_io_thread_client.h View 3 chunks +46 lines, -11 lines 0 comments Download
A + android_webview/browser/aw_contents_io_thread_client.cc View 1 14 chunks +24 lines, -27 lines 0 comments Download
D android_webview/browser/aw_contents_io_thread_client_impl.h View 1 chunk +0 lines, -70 lines 0 comments Download
D android_webview/browser/aw_contents_io_thread_client_impl.cc View 1 chunk +0 lines, -413 lines 0 comments Download
M android_webview/browser/aw_contents_statics.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M android_webview/browser/aw_web_contents_delegate.cc View 2 chunks +2 lines, -2 lines 0 comments Download
D android_webview/browser/aw_web_resource_response_impl.h View 1 1 chunk +0 lines, -47 lines 0 comments Download
M android_webview/browser/aw_web_resource_response_impl.cc View 1 1 chunk +0 lines, -96 lines 0 comments Download
M android_webview/browser/input_stream.h View 1 2 3 chunks +25 lines, -5 lines 1 comment Download
A + android_webview/browser/input_stream.cc View 1 2 4 chunks +10 lines, -16 lines 0 comments Download
D android_webview/browser/input_stream_impl.h View 1 chunk +0 lines, -55 lines 0 comments Download
D android_webview/browser/input_stream_impl.cc View 1 chunk +0 lines, -129 lines 0 comments Download
M android_webview/browser/input_stream_unittest.cc View 7 chunks +7 lines, -8 lines 0 comments Download
M android_webview/browser/net/aw_web_resource_response.h View 1 2 chunks +18 lines, -14 lines 0 comments Download
A + android_webview/browser/net/aw_web_resource_response.cc View 1 5 chunks +14 lines, -15 lines 0 comments Download

Messages

Total messages: 28 (15 generated)
Shimi Zhang
Bo, PTAL, thanks!
3 years, 7 months ago (2017-05-22 23:23:03 UTC) #11
sgurun-gerrit only
On 2017/05/22 23:23:03, Shimi Zhang wrote: > Bo, PTAL, thanks! omg, 700 lines deleted net, ...
3 years, 7 months ago (2017-05-22 23:24:05 UTC) #12
boliu
On 2017/05/22 23:24:05, sgurun wrote: > On 2017/05/22 23:23:03, Shimi Zhang wrote: > > Bo, ...
3 years, 7 months ago (2017-05-22 23:27:15 UTC) #13
sgurun-gerrit only
On 2017/05/22 23:27:15, boliu wrote: > On 2017/05/22 23:24:05, sgurun wrote: > > On 2017/05/22 ...
3 years, 7 months ago (2017-05-22 23:28:05 UTC) #14
Shimi Zhang
On 2017/05/22 23:28:05, sgurun wrote: > On 2017/05/22 23:27:15, boliu wrote: > > On 2017/05/22 ...
3 years, 7 months ago (2017-05-22 23:29:55 UTC) #15
boliu
https://codereview.chromium.org/2889193004/diff/40001/android_webview/browser/input_stream.h File android_webview/browser/input_stream.h (right): https://codereview.chromium.org/2889193004/diff/40001/android_webview/browser/input_stream.h#newcode32 android_webview/browser/input_stream.h:32: virtual ~InputStream(); does this still need virtual?
3 years, 7 months ago (2017-05-22 23:30:11 UTC) #16
Shimi Zhang
On 2017/05/22 23:30:11, boliu wrote: > https://codereview.chromium.org/2889193004/diff/40001/android_webview/browser/input_stream.h > File android_webview/browser/input_stream.h (right): > > https://codereview.chromium.org/2889193004/diff/40001/android_webview/browser/input_stream.h#newcode32 > ...
3 years, 7 months ago (2017-05-22 23:36:33 UTC) #17
boliu
On 2017/05/22 23:36:33, Shimi Zhang wrote: > On 2017/05/22 23:30:11, boliu wrote: > > > ...
3 years, 7 months ago (2017-05-22 23:38:40 UTC) #18
Shimi Zhang
> I was asking more generally. In general, empty destructor does not imply no-op > ...
3 years, 7 months ago (2017-05-22 23:51:19 UTC) #19
boliu
On 2017/05/22 23:51:19, Shimi Zhang wrote: > > I was asking more generally. In general, ...
3 years, 7 months ago (2017-05-23 00:34:15 UTC) #20
sgurun-gerrit only
On 2017/05/23 00:34:15, boliu wrote: > On 2017/05/22 23:51:19, Shimi Zhang wrote: > > > ...
3 years, 7 months ago (2017-05-23 00:49:26 UTC) #23
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/2889193004/40001
3 years, 7 months ago (2017-05-23 00:50:33 UTC) #25
commit-bot: I haz the power
3 years, 7 months ago (2017-05-23 00:57:10 UTC) #28
Message was sent while issue was closed.
Committed patchset #3 (id:40001) as
https://chromium.googlesource.com/chromium/src/+/e9928ffd65c7b5def5a8a5af659a...

Powered by Google App Engine
This is Rietveld 408576698