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

Issue 1303773002: Give the main frame a RenderWidget. (Closed)

Created:
5 years, 4 months ago by dcheng
Modified:
5 years, 1 month ago
CC:
chromium-reviews, creis+watch_chromium.org, darin-cc_chromium.org, jam, kenrb, mkwst+moarreviews-renderer_chromium.org, mlamouri+watch-content_chromium.org, nasko+codewatch_chromium.org, site-isolation-reviews_chromium.org, sky
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Give the main frame a RenderWidget. Currently, RenderView is a subclass of RenderWidget, and the RenderWidget portion is effectively treated as the the widget for the main frame as well. For a number of reasons, this is a problematic model: - A remote frame doesn't need a widget; however, a RenderView with a remote main frame still has a vestigal RenderWidget. - Code that needs to affect both RenderWidget / RenderView is awkwardly split between them, in both content and blink. - RenderView itself is often seen as an easy entry point to perform page-level work in the renderer. With OOPI, this is no longer a valid assumption. In order to incrementally de-widgetize RenderView, the main frame will have also have a RenderWidget, to make it consistent with the local frame roots for subframes, which already have a RenderWidget. However, instead of giving main frames their own RenderWidget, the main frame re-uses the RenderView as its RenderWidget. The rationale for taking this approach is to minimize the breakage: today, Chrome simply doesn't expect to have two "widgets" for a frame. Instantiating a distinct RenderWidget for the main frame can confuse code that iterates or counts the active widgets: an example of this is the security check for injecting WebUI bindings. In the future, when RenderViewHost has-a RenderWidgetHost (and similarly, when RenderViewImpl has-a RenderWidget) instead of today's is-a relation, then it be conceptually much more straightforward to transition completely to the new model. BUG=419087 Committed: https://crrev.com/3ce04b6e31fdcfe9d0cae5b4c116b57ed0dea81a Cr-Commit-Position: refs/heads/master@{#356176}

Patch Set 1 #

Patch Set 2 : Staging #

Patch Set 3 : Renderer #

Patch Set 4 : Less null pointers #

Patch Set 5 : rebase #

Total comments: 17

Patch Set 6 : Rebased #

Total comments: 1

Patch Set 7 : Rebase #

Patch Set 8 : Address some comments #

Patch Set 9 : Explosions #

Patch Set 10 : . #

Patch Set 11 : Crash less #

Patch Set 12 : Hmm. #

Patch Set 13 : Maybe crash less? #

Patch Set 14 : Now with even fewer crashes than before #

Patch Set 15 : Where more surface IDs are added #

Patch Set 16 : Now builds on Android/CrOS #

Patch Set 17 : Even less crashes than before, maybe #

Patch Set 18 : Fix WebUI #

Patch Set 19 : plumb through surface ID *and* widget surface ID for window.open #

Total comments: 18

Patch Set 20 : Rebase and unit tests #

Patch Set 21 : address nick@ comments #

Patch Set 22 : rebase #

Patch Set 23 : meep #

Patch Set 24 : Update CHECK #

Patch Set 25 : Another fix #

Patch Set 26 : Mostly rebased #

Patch Set 27 : Fix bad rebase #

Patch Set 28 : rebase #

Patch Set 29 : Explosions everywhere #

Patch Set 30 : null init is important #

Patch Set 31 : More 'fixes' #

Patch Set 32 : Finally fix the dumb typo #

Patch Set 33 : Misc fixes and update comments to reference crbug #

Patch Set 34 : Rebased #

Patch Set 35 : Fix all the tests. Probably. #

Total comments: 4

Patch Set 36 : Add DCHECK #

Total comments: 2

Patch Set 37 : RenderWidget_t: %s/^+.*\zs\<int32\>/int32_t/g #

Patch Set 38 : Rebased to include problematic test. #

Patch Set 39 : Fixes when navigating from swapped out main frame. #

Total comments: 2

Patch Set 40 : Fix merge conflicts #

Total comments: 4
Unified diffs Side-by-side diffs Delta from patch set Stats (+474 lines, -309 lines) Patch
M chrome/browser/android/document/document_web_contents_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/android/document/document_web_contents_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/background/background_contents.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/background/background_contents.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +4 lines, -2 lines 0 comments Download
M chrome/browser/background/background_contents_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/background/background_contents_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +8 lines, -12 lines 0 comments Download
M chrome/browser/chromeos/first_run/drive_first_run_controller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +11 lines, -13 lines 0 comments Download
M chrome/browser/extensions/api/tab_capture/offscreen_tab.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/extensions/api/tab_capture/offscreen_tab.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/prerender/prerender_contents.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M chrome/browser/ui/browser.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +6 lines, -4 lines 0 comments Download
M chrome/browser/ui/browser.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +14 lines, -20 lines 0 comments Download
M chrome/browser/ui/webui/print_preview/print_preview_distiller.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M components/web_contents_delegate_android/web_contents_delegate_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/frame_host/frame_tree_node.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +0 lines, -1 line 0 comments Download
M content/browser/frame_host/frame_tree_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 7 chunks +51 lines, -46 lines 0 comments Download
M content/browser/frame_host/interstitial_page_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/frame_host/interstitial_page_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +8 lines, -4 lines 0 comments Download
M content/browser/frame_host/render_frame_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 6 chunks +27 lines, -19 lines 4 comments Download
M content/browser/frame_host/render_frame_host_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/frame_host/render_frame_host_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +21 lines, -8 lines 0 comments Download
M content/browser/renderer_host/render_message_filter.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +2 lines, -3 lines 0 comments Download
M content/browser/renderer_host/render_message_filter.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 3 chunks +11 lines, -14 lines 0 comments Download
M content/browser/renderer_host/render_view_host_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/renderer_host/render_view_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +5 lines, -5 lines 0 comments Download
M content/browser/renderer_host/render_view_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 3 chunks +12 lines, -3 lines 0 comments Download
M content/browser/renderer_host/render_widget_helper.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +12 lines, -12 lines 0 comments Download
M content/browser/renderer_host/render_widget_helper.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +16 lines, -8 lines 0 comments Download
M content/browser/renderer_host/render_widget_host_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +3 lines, -0 lines 0 comments Download
M content/browser/security_exploit_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +7 lines, -5 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +3 lines, -2 lines 0 comments Download
M content/browser/web_contents/web_contents_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 5 chunks +35 lines, -16 lines 0 comments Download
M content/common/view_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +26 lines, -9 lines 0 comments Download
M content/public/browser/web_contents.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +7 lines, -5 lines 0 comments Download
M content/public/browser/web_contents.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +4 lines, -14 lines 0 comments Download
M content/public/browser/web_contents_delegate.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/public/browser/web_contents_delegate.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/public/test/mock_render_thread.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +10 lines, -7 lines 0 comments Download
M content/public/test/mock_render_thread.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +7 lines, -8 lines 0 comments Download
M content/public/test/render_view_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 3 chunks +8 lines, -0 lines 0 comments Download
M content/renderer/render_frame_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +8 lines, -2 lines 0 comments Download
M content/renderer/render_frame_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 3 chunks +35 lines, -8 lines 0 comments Download
M content/renderer/render_view_impl.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 4 chunks +8 lines, -0 lines 0 comments Download
M content/renderer/render_view_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 7 chunks +25 lines, -14 lines 0 comments Download
M content/renderer/render_widget.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 chunk +3 lines, -1 line 0 comments Download
M content/renderer/render_widget.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +14 lines, -0 lines 0 comments Download
M content/test/test_web_contents.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M content/test/test_web_contents.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +4 lines, -4 lines 0 comments Download
M extensions/browser/guest_view/extension_options/extension_options_guest.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 1 chunk +3 lines, -2 lines 0 comments Download
M extensions/browser/guest_view/extension_options/extension_options_guest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M ui/keyboard/content/keyboard_ui_content.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 1 chunk +1 line, -0 lines 0 comments Download
M ui/views/controls/webview/web_dialog_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download
M ui/views/controls/webview/web_dialog_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -2 lines 0 comments Download

Messages

Total messages: 43 (12 generated)
dcheng
Ignore the CL description for the time being. I'm still cleaning up the browser-side bits ...
5 years, 4 months ago (2015-08-24 18:50:21 UTC) #2
ncarter (slow)
https://codereview.chromium.org/1303773002/diff/80001/content/browser/renderer_host/render_widget_helper.cc File content/browser/renderer_host/render_widget_helper.cc (right): https://codereview.chromium.org/1303773002/diff/80001/content/browser/renderer_host/render_widget_helper.cc#newcode133 content/browser/renderer_host/render_widget_helper.cc:133: render_process_id_, *main_frame_route_id); Is this relevant for the third route ...
5 years, 4 months ago (2015-08-24 20:55:35 UTC) #3
Avi (use Gerrit)
https://codereview.chromium.org/1303773002/diff/100001/content/public/browser/web_contents.h File content/public/browser/web_contents.h (right): https://codereview.chromium.org/1303773002/diff/100001/content/public/browser/web_contents.h#newcode118 content/public/browser/web_contents.h:118: // TODO(dcheng): what the heck does 'make the assignment' ...
5 years, 3 months ago (2015-08-28 01:34:49 UTC) #5
dcheng
OK, I think this is ready for another look. Most of the non-Android failures will ...
5 years, 3 months ago (2015-09-03 16:33:10 UTC) #6
ncarter (slow)
lgtm with mostly comment nits. https://codereview.chromium.org/1303773002/diff/360001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/360001/content/browser/frame_host/render_frame_host_impl.cc#newcode948 content/browser/frame_host/render_frame_host_impl.cc:948: // TODO(dcheng): Similar to ...
5 years, 3 months ago (2015-09-03 20:24:38 UTC) #7
dcheng
https://codereview.chromium.org/1303773002/diff/360001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/360001/content/browser/frame_host/render_frame_host_impl.cc#newcode948 content/browser/frame_host/render_frame_host_impl.cc:948: // TODO(dcheng): Similar to above, though the main RenderFrameHost ...
5 years, 3 months ago (2015-09-03 21:29:24 UTC) #8
dcheng
PS28 -> PS33 contain the relevant changes. Sorry, a few rebasing lines snuck in by ...
5 years, 2 months ago (2015-10-20 22:35:15 UTC) #10
ncarter (slow)
Looks great. https://codereview.chromium.org/1303773002/diff/680001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/680001/content/browser/frame_host/render_frame_host_impl.cc#newcode227 content/browser/frame_host/render_frame_host_impl.cc:227: } Does it make sense to add ...
5 years, 2 months ago (2015-10-21 22:15:48 UTC) #11
dcheng
https://codereview.chromium.org/1303773002/diff/680001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/680001/content/browser/frame_host/render_frame_host_impl.cc#newcode227 content/browser/frame_host/render_frame_host_impl.cc:227: } On 2015/10/21 at 22:15:48, ncarter wrote: > Does ...
5 years, 2 months ago (2015-10-21 23:46:51 UTC) #13
ncarter (slow)
lgtm
5 years, 2 months ago (2015-10-22 18:34:22 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1303773002/700001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1303773002/700001
5 years, 2 months ago (2015-10-22 18:36:21 UTC) #16
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/111904)
5 years, 2 months ago (2015-10-22 18:56:34 UTC) #18
dcheng
+sky for chrome/ and ui/ review +mnaganov for components/ +rdevlin.cronin for extensions/ The changes in ...
5 years, 2 months ago (2015-10-22 19:05:31 UTC) #20
Devlin
extensions lgtm
5 years, 2 months ago (2015-10-22 19:14:37 UTC) #21
mnaganov (inactive)
components/ LGTM
5 years, 2 months ago (2015-10-22 19:18:11 UTC) #22
sky
LGTM https://codereview.chromium.org/1303773002/diff/700001/chrome/browser/android/document/document_web_contents_delegate.h File chrome/browser/android/document/document_web_contents_delegate.h (right): https://codereview.chromium.org/1303773002/diff/700001/chrome/browser/android/document/document_web_contents_delegate.h#newcode39 chrome/browser/android/document/document_web_contents_delegate.h:39: int32 route_id, int32->int32_t (the non _t types are ...
5 years, 2 months ago (2015-10-22 23:05:47 UTC) #23
dcheng
https://codereview.chromium.org/1303773002/diff/700001/chrome/browser/android/document/document_web_contents_delegate.h File chrome/browser/android/document/document_web_contents_delegate.h (right): https://codereview.chromium.org/1303773002/diff/700001/chrome/browser/android/document/document_web_contents_delegate.h#newcode39 chrome/browser/android/document/document_web_contents_delegate.h:39: int32 route_id, On 2015/10/22 at 23:05:47, sky wrote: > ...
5 years, 2 months ago (2015-10-22 23:29:44 UTC) #24
sky
I would convert it, but I leave it to you. -Scott On Thu, Oct 22, ...
5 years, 2 months ago (2015-10-22 23:44:27 UTC) #25
dcheng
On 2015/10/22 at 23:44:27, sky wrote: > I would convert it, but I leave it ...
5 years, 2 months ago (2015-10-23 01:14:33 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1303773002/720001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1303773002/720001
5 years, 2 months ago (2015-10-23 01:17:38 UTC) #29
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/70405)
5 years, 2 months ago (2015-10-23 01:43:46 UTC) #31
dcheng
PTAL. Diff between PS38 and PS39 includes fixes when transitioning the main frame out of ...
5 years, 2 months ago (2015-10-24 00:30:46 UTC) #32
Devlin
extensions still lgtm
5 years, 2 months ago (2015-10-24 00:43:57 UTC) #33
ncarter (slow)
ps38 vs. 39 lgtm https://codereview.chromium.org/1303773002/diff/760001/content/browser/frame_host/render_frame_host_manager.cc File content/browser/frame_host/render_frame_host_manager.cc (right): https://codereview.chromium.org/1303773002/diff/760001/content/browser/frame_host/render_frame_host_manager.cc#newcode1705 content/browser/frame_host/render_frame_host_manager.cc:1705: // CreateRenderFrame() could do this ...
5 years, 1 month ago (2015-10-26 22:27:43 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1303773002/780001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1303773002/780001
5 years, 1 month ago (2015-10-26 22:29:26 UTC) #37
commit-bot: I haz the power
Committed patchset #40 (id:780001)
5 years, 1 month ago (2015-10-26 23:31:04 UTC) #38
commit-bot: I haz the power
Patchset 40 (id:??) landed as https://crrev.com/3ce04b6e31fdcfe9d0cae5b4c116b57ed0dea81a Cr-Commit-Position: refs/heads/master@{#356176}
5 years, 1 month ago (2015-10-26 23:31:53 UTC) #39
Avi (use Gerrit)
Daniel, Despite all the new TODOs with my name on them, I _will_ be consulting ...
5 years, 1 month ago (2015-10-27 03:08:29 UTC) #40
dcheng
https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_host/render_frame_host_impl.cc#newcode668 content/browser/frame_host/render_frame_host_impl.cc:668: // RenderWidgetHostViewAura for the main frame once RenderViewHostImpl has-a ...
5 years, 1 month ago (2015-10-27 03:34:06 UTC) #41
Avi (use Gerrit)
https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_host/render_frame_host_impl.cc File content/browser/frame_host/render_frame_host_impl.cc (right): https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_host/render_frame_host_impl.cc#newcode668 content/browser/frame_host/render_frame_host_impl.cc:668: // RenderWidgetHostViewAura for the main frame once RenderViewHostImpl has-a ...
5 years, 1 month ago (2015-10-27 03:41:31 UTC) #42
dcheng
5 years, 1 month ago (2015-10-27 04:30:44 UTC) #43
Message was sent while issue was closed.
https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_...
File content/browser/frame_host/render_frame_host_impl.cc (right):

https://codereview.chromium.org/1303773002/diff/780001/content/browser/frame_...
content/browser/frame_host/render_frame_host_impl.cc:668: //
RenderWidgetHostViewAura for the main frame once RenderViewHostImpl has-a
On 2015/10/27 at 03:41:31, Avi wrote:
> Granted that the child views each have a RenderWidgetHostViewChildFrame, and
the top-level view needs the proper platform-specific implementation, but I was
surprised with the mention of RenderWidgetHostViewAura given that we might need
a RenderWidgetHostViewAndroid or a RenderWidgetHostViewMac.

Yeah, I just wasn't sure what to call this, so I ended up naming a specific
platform implementation, under the assumption that whoever comes along and fixes
this TODO will know what the right thing is.

Powered by Google App Engine
This is Rietveld 408576698