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

Issue 1157783002: Update to newer network service implementation and mojoms from monet (Closed)

Created:
5 years, 7 months ago by jamesr
Modified:
5 years, 7 months ago
Reviewers:
viettrungluu, qsr, blundell
CC:
mojo-reviews_chromium.org, gregsimon, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin (slow to review), ben+mojo_chromium.org, ojan, blundell
Base URL:
git@github.com:domokit/mojo.git@master
Target Ref:
refs/heads/master
Project:
mojo
Visibility:
Public.

Description

Update to newer network service implementation and mojoms from monet This updates to using the network service implementation and mojoms from https://github.com/domokit/monet/commit/050294719f6890ceea4b27540d66295fe6e710a3 R=blundell@chromium.org, qsr@chromium.org, viettrungluu@chromium.org Committed: https://chromium.googlesource.com/external/mojo/+/d4709749733bb7833b338f9ffaa42a51b516f2d5

Patch Set 1 #

Total comments: 5

Patch Set 2 : Update for AuthenticatedURLLoader, use BlockingCopyToString instead of parsing content-length #

Total comments: 3

Patch Set 3 : fix gn check #

Patch Set 4 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+221 lines, -160 lines) Patch
M PRESUBMIT.py View 1 chunk +1 line, -0 lines 0 comments Download
M examples/pdf_viewer/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M examples/pdf_viewer/pdf_viewer.cc View 1 2 chunks +10 lines, -38 lines 0 comments Download
M examples/png_viewer/BUILD.gn View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M examples/png_viewer/png_viewer.cc View 1 2 chunks +6 lines, -37 lines 0 comments Download
M examples/wget/wget.cc View 1 chunk +3 lines, -1 line 0 comments Download
M mojo/public/tools/NETWORK_SERVICE_VERSION View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M mojo/services/network/public/interfaces/BUILD.gn View 1 chunk +3 lines, -0 lines 0 comments Download
A mojo/services/network/public/interfaces/http_connection.mojom View 1 chunk +42 lines, -0 lines 0 comments Download
A mojo/services/network/public/interfaces/http_message.mojom View 1 chunk +23 lines, -0 lines 0 comments Download
A mojo/services/network/public/interfaces/http_server.mojom View 1 chunk +12 lines, -0 lines 0 comments Download
M mojo/services/network/public/interfaces/network_service.mojom View 2 chunks +14 lines, -0 lines 0 comments Download
M mojo/services/network/public/interfaces/url_loader.mojom View 4 chunks +3 lines, -5 lines 0 comments Download
M services/authenticating_url_loader/authenticating_url_loader_impl.h View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M services/authenticating_url_loader/authenticating_url_loader_impl.cc View 1 2 3 2 chunks +9 lines, -4 lines 0 comments Download
M services/python/mojo_url_redirector/mojo_url_redirector_apptest.cc View 1 chunk +2 lines, -3 lines 0 comments Download
M services/url_response_disk_cache/url_response_disk_cache_apptest.cc View 5 chunks +23 lines, -11 lines 0 comments Download
M services/url_response_disk_cache/url_response_disk_cache_entry.mojom View 1 chunk +6 lines, -1 line 0 comments Download
M services/url_response_disk_cache/url_response_disk_cache_impl.cc View 1 3 chunks +13 lines, -23 lines 0 comments Download
M shell/application_manager/local_fetcher.cc View 1 chunk +10 lines, -5 lines 0 comments Download
M shell/application_manager/network_fetcher.cc View 1 1 chunk +5 lines, -2 lines 0 comments Download
M sky/services/oknet/src/org/domokit/oknet/NetworkServiceImpl.java View 3 chunks +9 lines, -1 line 0 comments Download
M sky/services/oknet/src/org/domokit/oknet/UrlLoaderImpl.java View 4 chunks +10 lines, -10 lines 0 comments Download
M sky/services/platform/url_request_types.cc View 1 chunk +10 lines, -4 lines 0 comments Download
M sky/services/platform/weburlloader_impl.cc View 1 chunk +3 lines, -13 lines 0 comments Download

Messages

Total messages: 13 (2 generated)
jamesr
5 years, 7 months ago (2015-05-22 23:53:53 UTC) #2
viettrungluu
https://codereview.chromium.org/1157783002/diff/1/examples/pdf_viewer/pdf_viewer.cc File examples/pdf_viewer/pdf_viewer.cc (right): https://codereview.chromium.org/1157783002/diff/1/examples/pdf_viewer/pdf_viewer.cc#newcode189 examples/pdf_viewer/pdf_viewer.cc:189: if (headers[i]->name == "Content-Length") { Header field names are ...
5 years, 7 months ago (2015-05-23 00:07:28 UTC) #3
qsr
LGTM with nits. https://codereview.chromium.org/1157783002/diff/1/services/url_response_disk_cache/url_response_disk_cache_impl.cc File services/url_response_disk_cache/url_response_disk_cache_impl.cc (right): https://codereview.chromium.org/1157783002/diff/1/services/url_response_disk_cache/url_response_disk_cache_impl.cc#newcode29 services/url_response_disk_cache/url_response_disk_cache_impl.cc:29: const uint32_t kCurrentVersion = 1; Please ...
5 years, 7 months ago (2015-05-26 11:34:03 UTC) #4
jamesr
https://codereview.chromium.org/1157783002/diff/1/examples/pdf_viewer/pdf_viewer.cc File examples/pdf_viewer/pdf_viewer.cc (right): https://codereview.chromium.org/1157783002/diff/1/examples/pdf_viewer/pdf_viewer.cc#newcode191 examples/pdf_viewer/pdf_viewer.cc:191: base::StringToInt(headers[i]->value.To<std::string>(), &length); On 2015/05/23 00:07:28, viettrungluu wrote: > I ...
5 years, 7 months ago (2015-05-26 21:02:05 UTC) #5
jamesr
On 2015/05/26 11:34:03, qsr wrote: > LGTM with nits. > > https://codereview.chromium.org/1157783002/diff/1/services/url_response_disk_cache/url_response_disk_cache_impl.cc > File services/url_response_disk_cache/url_response_disk_cache_impl.cc ...
5 years, 7 months ago (2015-05-26 21:04:07 UTC) #6
jamesr
5 years, 7 months ago (2015-05-26 21:04:12 UTC) #7
jamesr
Actually, I think having the cache data types be isolated is nice since it represents ...
5 years, 7 months ago (2015-05-26 23:14:24 UTC) #8
viettrungluu
LGTM w/optional nits. https://codereview.chromium.org/1157783002/diff/20001/examples/pdf_viewer/pdf_viewer.cc File examples/pdf_viewer/pdf_viewer.cc (right): https://codereview.chromium.org/1157783002/diff/20001/examples/pdf_viewer/pdf_viewer.cc#newcode166 examples/pdf_viewer/pdf_viewer.cc:166: mojo::common::BlockingCopyToString(response->body.Pass(), &data_); nit: I don't think ...
5 years, 7 months ago (2015-05-26 23:21:54 UTC) #9
jamesr
https://codereview.chromium.org/1157783002/diff/20001/examples/pdf_viewer/pdf_viewer.cc File examples/pdf_viewer/pdf_viewer.cc (right): https://codereview.chromium.org/1157783002/diff/20001/examples/pdf_viewer/pdf_viewer.cc#newcode166 examples/pdf_viewer/pdf_viewer.cc:166: mojo::common::BlockingCopyToString(response->body.Pass(), &data_); On 2015/05/26 23:21:53, viettrungluu wrote: > nit: ...
5 years, 7 months ago (2015-05-26 23:26:31 UTC) #10
blundell
AuthenticatingURLLoader changes lgtm
5 years, 7 months ago (2015-05-27 08:33:18 UTC) #12
jamesr
5 years, 7 months ago (2015-05-27 20:25:02 UTC) #13
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
d4709749733bb7833b338f9ffaa42a51b516f2d5 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698