| Index: chrome/browser/ui/extensions/application_launch.cc
|
| diff --git a/chrome/browser/ui/extensions/application_launch.cc b/chrome/browser/ui/extensions/application_launch.cc
|
| index 996d3ff483116f5f8b1fe11f8b48db20294c78d6..fa51e7a1d851a08423dd5caca820ff73e9dd02f5 100644
|
| --- a/chrome/browser/ui/extensions/application_launch.cc
|
| +++ b/chrome/browser/ui/extensions/application_launch.cc
|
| @@ -239,7 +239,8 @@ WebContents* OpenApplicationTab(const AppLaunchParams& launch_params,
|
| } else {
|
| // For existing browser, ensure its window is shown and activated.
|
| browser->window()->Show();
|
| - browser->window()->Activate();
|
| + // TODO(johnme): Can we sometimes be certain this was for a user gesture?
|
| + browser->window()->Activate(false /* user_gesture */);
|
| }
|
|
|
| extensions::LaunchType launch_type =
|
|
|