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

Issue 2775003: Added plumbing to transport the frame name between RenderViewHost and the Webkit layer. (Closed)

Created:
10 years, 6 months ago by Andrew T Wilson (Slow)
Modified:
9 years, 7 months ago
Reviewers:
rafaelw
CC:
chromium-reviews, jam+cc_chromium.org, ben+cc_chromium.org, Erik does not do reviews, Aaron Boodman, pam+watch_chromium.org, brettw-cc_chromium.org, darin-cc_chromium.org, Paweł Hajdan Jr., dpranke+watch_chromium.org
Visibility:
Public.

Description

Added plumbing to transport the frame name between RenderViewHost and the Webkit layer. Extended ViewMsg_New and ViewHostMsg_CreateWindow to have a new frame_name parameter. This allows the RVH to know the initial name of the frame associated with its RenderView, and also to set the name of the frame when creating a new RenderView. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=49622

Patch Set 1 #

Patch Set 2 : Added plumbing from chrome -> webkit api. #

Total comments: 8

Patch Set 3 : Changes per review feedback #

Total comments: 7

Patch Set 4 : Final version for the record #

Unified diffs Side-by-side diffs Delta from patch set Stats (+219 lines, -83 lines) Patch
M chrome/browser/extensions/extension_host.h View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/extensions/extension_host.cc View 1 2 3 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/browser/notifications/balloon_host.h View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/notifications/balloon_host.cc View 1 2 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host.h View 1 2 3 2 chunks +6 lines, -3 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host.cc View 1 2 3 3 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/renderer_host/render_view_host_delegate.h View 1 2 3 1 chunk +5 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/render_widget_helper.h View 2 chunks +3 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/render_widget_helper.cc View 2 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.h View 2 chunks +3 lines, -3 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.cc View 1 1 chunk +7 lines, -8 lines 0 comments Download
M chrome/browser/renderer_host/test/test_render_view_host.h View 3 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/renderer_host/test/test_render_view_host.cc View 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/tab_contents/background_contents.h View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/tab_contents/background_contents.cc View 1 2 1 chunk +4 lines, -2 lines 0 comments Download
M chrome/browser/tab_contents/interstitial_page.cc View 1 2 3 chunks +5 lines, -3 lines 0 comments Download
M chrome/browser/tab_contents/render_view_host_delegate_helper.h View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/tab_contents/render_view_host_delegate_helper.cc View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/tab_contents/tab_contents.cc View 3 1 chunk +1 line, -1 line 0 comments Download
M chrome/browser/tab_contents/tab_contents_view.h View 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/tab_contents/tab_contents_view.cc View 1 2 1 chunk +9 lines, -4 lines 0 comments Download
M chrome/browser/tab_contents/test_tab_contents.cc View 3 1 chunk +2 lines, -1 line 0 comments Download
M chrome/browser/visitedlink_unittest.cc View 3 chunks +3 lines, -3 lines 0 comments Download
chrome/common/render_messages.h View 1 2 5 chunks +59 lines, -1 line 0 comments Download
M chrome/common/render_messages_internal.h View 1 2 3 1 chunk +4 lines, -8 lines 0 comments Download
M chrome/renderer/render_thread.cc View 2 1 chunk +9 lines, -3 lines 0 comments Download
M chrome/renderer/render_view.h View 1 2 3 3 chunks +9 lines, -2 lines 0 comments Download
M chrome/renderer/render_view.cc View 1 2 3 7 chunks +32 lines, -14 lines 0 comments Download
M chrome/test/render_view_test.cc View 2 1 chunk +9 lines, -4 lines 0 comments Download
M webkit/tools/test_shell/test_webview_delegate.h View 1 chunk +5 lines, -0 lines 0 comments Download
M webkit/tools/test_shell/test_webview_delegate.cc View 1 chunk +8 lines, -1 line 0 comments Download

Messages

Total messages: 5 (0 generated)
rafaelw
Mostly looks good. http://codereview.chromium.org/2775003/diff/2001/3007 File chrome/browser/renderer_host/render_view_host_delegate.h (right): http://codereview.chromium.org/2775003/diff/2001/3007#newcode96 chrome/browser/renderer_host/render_view_host_delegate.h:96: // The passed frame_name parameter is ...
10 years, 6 months ago (2010-06-10 22:48:05 UTC) #1
Andrew T Wilson (Slow)
Addressed review comments. Please take another look. http://codereview.chromium.org/2775003/diff/2001/3007 File chrome/browser/renderer_host/render_view_host_delegate.h (right): http://codereview.chromium.org/2775003/diff/2001/3007#newcode484 chrome/browser/renderer_host/render_view_host_delegate.h:484: virtual string16 ...
10 years, 6 months ago (2010-06-11 04:24:00 UTC) #2
rafaelw
lgtm w/ additional formatting changes. also, it's helpful as a reviewer if you respond to ...
10 years, 6 months ago (2010-06-11 06:22:50 UTC) #3
Andrew T Wilson (Slow)
On 2010/06/11 06:22:50, rafaelw wrote: > lgtm w/ additional formatting changes. > > also, it's ...
10 years, 6 months ago (2010-06-12 02:44:20 UTC) #4
Andrew T Wilson (Slow)
10 years, 6 months ago (2010-06-12 02:44:41 UTC) #5

          

Powered by Google App Engine
This is Rietveld 408576698