| Index: chrome/browser/browser.cc
|
| diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc
|
| index 2bfd17a691ef855ae3d66c19959298268c273329..60a78ceb669df34e97aee46cab8019ef3ebe04f4 100644
|
| --- a/chrome/browser/browser.cc
|
| +++ b/chrome/browser/browser.cc
|
| @@ -1479,9 +1479,8 @@ void Browser::ExecuteCommand(int id) {
|
| service->GetBrowserActions(false); // false means no popup actions.
|
| for (size_t i = 0; i < browser_actions.size(); ++i) {
|
| if (browser_actions[i]->command_id() == id) {
|
| - int window_id = ExtensionTabUtil::GetWindowId(this);
|
| ExtensionBrowserEventRouter::GetInstance()->BrowserActionExecuted(
|
| - profile_, browser_actions[i]->extension_id(), window_id);
|
| + profile_, browser_actions[i]->extension_id(), this);
|
| return;
|
| }
|
| }
|
|
|