| Index: chrome/browser/notifications/balloon_host.cc
|
| diff --git a/chrome/browser/notifications/balloon_host.cc b/chrome/browser/notifications/balloon_host.cc
|
| index c07593ee03b98d15fafd8ed68fbde16205dae283..e1cf6ad4116ace409ca75e4e92e1718922dfb5e9 100644
|
| --- a/chrome/browser/notifications/balloon_host.cc
|
| +++ b/chrome/browser/notifications/balloon_host.cc
|
| @@ -88,14 +88,16 @@ void BalloonHost::ProcessDOMUIMessage(const std::string& message,
|
| // open pages in new tabs.
|
| void BalloonHost::CreateNewWindow(
|
| int route_id,
|
| - WindowContainerType window_container_type) {
|
| + WindowContainerType window_container_type,
|
| + const string16& frame_name) {
|
| delegate_view_helper_.CreateNewWindow(
|
| route_id,
|
| balloon_->profile(),
|
| site_instance_.get(),
|
| DOMUIFactory::GetDOMUIType(balloon_->notification().content_url()),
|
| this,
|
| - window_container_type);
|
| + window_container_type,
|
| + frame_name);
|
| }
|
|
|
| void BalloonHost::ShowCreatedWindow(int route_id,
|
|
|