| Index: chrome/browser/ui/extensions/shell_window.cc
|
| ===================================================================
|
| --- chrome/browser/ui/extensions/shell_window.cc (revision 154977)
|
| +++ chrome/browser/ui/extensions/shell_window.cc (working copy)
|
| @@ -255,7 +255,8 @@
|
| WebContents* new_contents,
|
| WindowOpenDisposition disposition,
|
| const gfx::Rect& initial_pos,
|
| - bool user_gesture) {
|
| + bool user_gesture,
|
| + bool* was_blocked) {
|
| DCHECK(source == web_contents_);
|
| DCHECK(Profile::FromBrowserContext(new_contents->GetBrowserContext()) ==
|
| profile_);
|
| @@ -265,7 +266,7 @@
|
| disposition =
|
| disposition == NEW_BACKGROUND_TAB ? disposition : NEW_FOREGROUND_TAB;
|
| chrome::AddWebContents(browser, NULL, new_contents, disposition, initial_pos,
|
| - user_gesture);
|
| + user_gesture, was_blocked);
|
| }
|
|
|
| void ShellWindow::HandleKeyboardEvent(
|
|
|