summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/background_contents.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/tab_contents/background_contents.cc')
-rw-r--r--chrome/browser/tab_contents/background_contents.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/tab_contents/background_contents.cc b/chrome/browser/tab_contents/background_contents.cc
index 33822a7..5409d65 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,