| Index: chrome/browser/extensions/page_action_controller.cc
|
| diff --git a/chrome/browser/extensions/page_action_controller.cc b/chrome/browser/extensions/page_action_controller.cc
|
| index b028bb5bfa82ffd09904c8dd2ceddf65a4fdc59a..ff48a21cd5f5b9a3a9b18c6bf0042e3fe82274d4 100644
|
| --- a/chrome/browser/extensions/page_action_controller.cc
|
| +++ b/chrome/browser/extensions/page_action_controller.cc
|
| @@ -38,19 +38,8 @@ std::vector<ExtensionAction*> PageActionController::GetCurrentActions() const {
|
| ExtensionActionManager* extension_action_manager =
|
| ExtensionActionManager::Get(profile());
|
|
|
| - // The script bubble, if present, is always first. This will make it show up
|
| - // last in the omnibox.
|
| - const Extension* script_bubble =
|
| - service->component_loader()->GetScriptBubble();
|
| - if (script_bubble)
|
| - current_actions.push_back(
|
| - extension_action_manager->GetPageAction(*script_bubble));
|
| -
|
| for (ExtensionSet::const_iterator i = service->extensions()->begin();
|
| i != service->extensions()->end(); ++i) {
|
| - if (script_bubble && *i == script_bubble)
|
| - continue;
|
| -
|
| ExtensionAction* action = extension_action_manager->GetPageAction(**i);
|
| if (action)
|
| current_actions.push_back(action);
|
|
|