Chromium Code Reviews| Index: chrome/browser/tab_contents/tab_contents_view.cc |
| diff --git a/chrome/browser/tab_contents/tab_contents_view.cc b/chrome/browser/tab_contents/tab_contents_view.cc |
| index 0fb400e6d097eedd0f8ad39cd2d7a9162a478c39..aea0b1dfe6dc8f84f815c031cd1cb63461b67275 100644 |
| --- a/chrome/browser/tab_contents/tab_contents_view.cc |
| +++ b/chrome/browser/tab_contents/tab_contents_view.cc |
| @@ -28,11 +28,12 @@ void TabContentsView::RenderViewCreated(RenderViewHost* host) { |
| void TabContentsView::CreateNewWindow( |
| int route_id, |
| - WindowContainerType window_container_type) { |
| + WindowContainerType window_container_type, |
| + const string16& frame_name) { |
| TabContents* new_contents = delegate_view_helper_.CreateNewWindow( |
| route_id, tab_contents_->profile(), tab_contents_->GetSiteInstance(), |
|
rafaelw
2010/06/10 22:48:05
stack args, one per line.
|
| DOMUIFactory::GetDOMUIType(tab_contents_->GetURL()), tab_contents_, |
| - window_container_type); |
| + window_container_type, frame_name); |
| if (new_contents && tab_contents_->delegate()) |
| tab_contents_->delegate()->TabContentsCreated(new_contents); |