| Index: chrome/browser/tab_contents/background_contents.cc
|
| diff --git a/chrome/browser/tab_contents/background_contents.cc b/chrome/browser/tab_contents/background_contents.cc
|
| index 33822a779bbedb9cb112013238c4f49be8da6e34..5409d65f2f860c786d7f3d8a60ab2a4681c86823 100644
|
| --- a/chrome/browser/tab_contents/background_contents.cc
|
| +++ b/chrome/browser/tab_contents/background_contents.cc
|
| @@ -156,13 +156,15 @@ void BackgroundContents::ProcessDOMUIMessage(const std::string& message,
|
|
|
| void BackgroundContents::CreateNewWindow(
|
| int route_id,
|
| - WindowContainerType window_container_type) {
|
| + WindowContainerType window_container_type,
|
| + const string16& frame_name) {
|
| delegate_view_helper_.CreateNewWindow(route_id,
|
| render_view_host_->process()->profile(),
|
| render_view_host_->site_instance(),
|
| DOMUIFactory::GetDOMUIType(url_),
|
| this,
|
| - window_container_type);
|
| + window_container_type,
|
| + frame_name);
|
| }
|
|
|
| void BackgroundContents::CreateNewWidget(int route_id,
|
|
|