| Index: chrome/browser/extensions/location_bar_controller.cc
|
| diff --git a/chrome/browser/extensions/location_bar_controller.cc b/chrome/browser/extensions/location_bar_controller.cc
|
| index 9bdc73645f835e183dbe95ede1ea8331787ed124..4d07cdf3b7b27e757994453e332c257635948be3 100644
|
| --- a/chrome/browser/extensions/location_bar_controller.cc
|
| +++ b/chrome/browser/extensions/location_bar_controller.cc
|
| @@ -47,9 +47,9 @@ std::vector<ExtensionAction*> LocationBarController::GetCurrentActions() {
|
| // one action per extension. If clicking on an active script action ever
|
| // has a response, then we will need to split the actions.
|
| ExtensionAction* action =
|
| - page_action_controller_->GetActionForExtension(*iter);
|
| + page_action_controller_->GetActionForExtension(iter->get());
|
| if (!action)
|
| - action = active_script_controller_->GetActionForExtension(*iter);
|
| + action = active_script_controller_->GetActionForExtension(iter->get());
|
| if (action)
|
| current_actions.push_back(action);
|
| }
|
|
|