| Index: chrome/browser/extensions/extension_service.cc
|
| diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
|
| index c4f4a62109bfe43837d4e54a2c7c82a97a1520de..068f4ecf6e3a5f0db836a872429635c5a50bcff6 100644
|
| --- a/chrome/browser/extensions/extension_service.cc
|
| +++ b/chrome/browser/extensions/extension_service.cc
|
| @@ -267,16 +267,6 @@ bool ExtensionService::OnExternalExtensionUpdateUrlFound(
|
| return true;
|
| }
|
|
|
| -const Extension* ExtensionService::GetInstalledApp(const GURL& url) const {
|
| - const Extension* extension =
|
| - registry_->enabled_extensions().GetExtensionOrAppByURL(url);
|
| - return (extension && extension->is_app()) ? extension : NULL;
|
| -}
|
| -
|
| -bool ExtensionService::IsInstalledApp(const GURL& url) const {
|
| - return !!GetInstalledApp(url);
|
| -}
|
| -
|
| // static
|
| // This function is used to implement the command-line switch
|
| // --uninstall-extension, and to uninstall an extension via sync. The LOG
|
|
|