| Index: chrome/browser/extensions/extension_service.cc
|
| diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
|
| index e897e265e86d16b8b89ec7e9f774ad9fc88aefab..a5559cf419665463e02fef83d484659ef3bcd332 100644
|
| --- a/chrome/browser/extensions/extension_service.cc
|
| +++ b/chrome/browser/extensions/extension_service.cc
|
| @@ -268,16 +268,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
|
|
|