| Index: chrome/browser/extensions/extensions_service.cc
|
| diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc
|
| index 354d7d2a1e4dfb9d930c003bd693bfba5bc38a99..ef6d9cdf1012d3cb026b3effbbd646f0a58a7b1d 100644
|
| --- a/chrome/browser/extensions/extensions_service.cc
|
| +++ b/chrome/browser/extensions/extensions_service.cc
|
| @@ -140,19 +140,6 @@ void ExtensionsService::Init() {
|
| GarbageCollectExtensions();
|
| }
|
|
|
| -std::vector<ExtensionAction*> ExtensionsService::GetPageActions() const {
|
| - std::vector<ExtensionAction*> result;
|
| -
|
| - // TODO(finnur): Sort the icons in some meaningful way.
|
| - for (ExtensionList::const_iterator iter = extensions_.begin();
|
| - iter != extensions_.end(); ++iter) {
|
| - if ((*iter)->page_action())
|
| - result.push_back((*iter)->page_action());
|
| - }
|
| -
|
| - return result;
|
| -}
|
| -
|
| void ExtensionsService::InstallExtension(const FilePath& extension_path) {
|
| CrxInstaller::Start(extension_path, install_directory_, Extension::INTERNAL,
|
| "", // no expected id
|
|
|