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

Issue 1693563002: PROTOTYPE: PlzNavigate: use a Mojo data pipe to stream navigation data to the renderer.

Created:
4 years, 10 months ago by carlosk
Modified:
4 years, 3 months ago
CC:
Charlie Harrison
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

PROTOTYPE: PlzNavigate: use a Mojo data pipe to stream navigation data to the renderer. WILL NOT BE SUBMITTED! BUG= CQ_INCLUDE_TRYBOTS=tryserver.chromium.linux:linux_site_isolation

Patch Set 1 #

Total comments: 6

Patch Set 2 : Data is now being read from the Mojo data pipe at the renderer's side! \o/ #

Patch Set 3 : Browser sends URLRequest id to the renderer and renderer uses intermediary buffer for data: none he… #

Unified diffs Side-by-side diffs Delta from patch set Stats (+803 lines, -132 lines) Patch
M content/browser/frame_host/navigation_handle_impl.cc View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigation_request.h View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/frame_host/navigation_request.cc View 1 2 2 chunks +5 lines, -2 lines 0 comments Download
M content/browser/frame_host/navigator.h View 1 2 2 chunks +7 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigator.cc View 1 2 1 chunk +7 lines, -0 lines 0 comments Download
M content/browser/frame_host/navigator_impl.h View 1 2 1 chunk +2 lines, -1 line 0 comments Download
M content/browser/frame_host/navigator_impl.cc View 1 2 3 chunks +11 lines, -6 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.h View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.cc View 1 2 3 chunks +32 lines, -13 lines 0 comments Download
A + content/browser/loader/mojo_stream_writer.h View 1 4 chunks +31 lines, -29 lines 0 comments Download
A content/browser/loader/mojo_stream_writer.cc View 1 2 1 chunk +138 lines, -0 lines 0 comments Download
M content/browser/loader/navigation_resource_handler.h View 1 2 chunks +2 lines, -2 lines 0 comments Download
M content/browser/loader/navigation_resource_handler.cc View 1 2 5 chunks +46 lines, -7 lines 0 comments Download
M content/browser/loader/navigation_url_loader_delegate.h View 1 2 2 chunks +3 lines, -1 line 0 comments Download
M content/browser/loader/navigation_url_loader_impl.h View 1 2 2 chunks +5 lines, -2 lines 0 comments Download
M content/browser/loader/navigation_url_loader_impl.cc View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M content/browser/loader/navigation_url_loader_impl_core.h View 1 2 2 chunks +5 lines, -2 lines 0 comments Download
M content/browser/loader/navigation_url_loader_impl_core.cc View 1 2 2 chunks +4 lines, -2 lines 0 comments Download
M content/browser/loader/navigation_url_loader_unittest.cc View 1 2 chunks +6 lines, -2 lines 0 comments Download
M content/browser/loader/resource_dispatcher_host_impl.cc View 1 2 chunks +7 lines, -2 lines 0 comments Download
A content/child/mojo_pipe_received_data.h View 1 2 1 chunk +68 lines, -0 lines 0 comments Download
A content/child/mojo_pipe_received_data.cc View 1 2 1 chunk +55 lines, -0 lines 0 comments Download
M content/child/request_info.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M content/child/resource_dispatcher.h View 1 2 4 chunks +19 lines, -3 lines 0 comments Download
M content/child/resource_dispatcher.cc View 1 2 8 chunks +152 lines, -9 lines 0 comments Download
M content/child/web_url_loader_impl.h View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M content/child/web_url_loader_impl.cc View 1 2 2 chunks +22 lines, -11 lines 0 comments Download
M content/child/web_url_loader_impl_unittest.cc View 1 1 chunk +6 lines, -3 lines 0 comments Download
M content/common/frame_messages.h View 1 1 chunk +6 lines, -5 lines 0 comments Download
M content/common/render_frame_setup.mojom View 1 2 1 chunk +8 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download
M content/content_child.gypi View 1 3 chunks +6 lines, -4 lines 0 comments Download
M content/renderer/render_frame_impl.h View 1 2 6 chunks +26 lines, -4 lines 0 comments Download
M content/renderer/render_frame_impl.cc View 1 2 6 chunks +96 lines, -11 lines 0 comments Download
M content/test/test_navigation_url_loader.cc View 1 chunk +2 lines, -1 line 0 comments Download
M content/test/test_render_frame.cc View 1 1 chunk +4 lines, -1 line 0 comments Download

Messages

Total messages: 9 (6 generated)
Ken Rockot(use gerrit already)
https://codereview.chromium.org/1693563002/diff/1/content/browser/loader/mojo_stream_writer.cc File content/browser/loader/mojo_stream_writer.cc (right): https://codereview.chromium.org/1693563002/diff/1/content/browser/loader/mojo_stream_writer.cc#newcode35 content/browser/loader/mojo_stream_writer.cc:35: // The user having to default initialize it is ...
4 years, 10 months ago (2016-02-11 16:40:39 UTC) #3
carlosk
Thanks Ken. https://codereview.chromium.org/1693563002/diff/1/content/browser/loader/mojo_stream_writer.cc File content/browser/loader/mojo_stream_writer.cc (right): https://codereview.chromium.org/1693563002/diff/1/content/browser/loader/mojo_stream_writer.cc#newcode35 content/browser/loader/mojo_stream_writer.cc:35: // The user having to default initialize ...
4 years, 10 months ago (2016-02-16 15:34:07 UTC) #5
Charlie Harrison
4 years, 9 months ago (2016-03-21 14:04:38 UTC) #7

          

Powered by Google App Engine
This is Rietveld 408576698