| 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..00eaed761e8a8add24b09bfccff23cf7e27284ad 100644
|
| --- a/chrome/browser/tab_contents/tab_contents_view.cc
|
| +++ b/chrome/browser/tab_contents/tab_contents_view.cc
|
| @@ -28,11 +28,16 @@ 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(),
|
| - DOMUIFactory::GetDOMUIType(tab_contents_->GetURL()), tab_contents_,
|
| - window_container_type);
|
| + route_id,
|
| + tab_contents_->profile(),
|
| + tab_contents_->GetSiteInstance(),
|
| + DOMUIFactory::GetDOMUIType(tab_contents_->GetURL()),
|
| + tab_contents_,
|
| + window_container_type,
|
| + frame_name);
|
|
|
| if (new_contents && tab_contents_->delegate())
|
| tab_contents_->delegate()->TabContentsCreated(new_contents);
|
|
|