| Index: extensions/browser/extension_util.cc
|
| diff --git a/extensions/browser/extension_util.cc b/extensions/browser/extension_util.cc
|
| index 23de13057948d4202e70473872f8961d63ec582e..4981790a9ed3b67f681cc229de8d2a4e26244684 100644
|
| --- a/extensions/browser/extension_util.cc
|
| +++ b/extensions/browser/extension_util.cc
|
| @@ -12,18 +12,6 @@
|
| namespace extensions {
|
| namespace util {
|
|
|
| -bool IsExtensionInstalledPermanently(const std::string& extension_id,
|
| - content::BrowserContext* context) {
|
| - const Extension* extension = ExtensionRegistry::Get(context)->
|
| - GetExtensionById(extension_id, ExtensionRegistry::EVERYTHING);
|
| - return extension && !IsEphemeralApp(extension_id, context);
|
| -}
|
| -
|
| -bool IsEphemeralApp(const std::string& extension_id,
|
| - content::BrowserContext* context) {
|
| - return ExtensionPrefs::Get(context)->IsEphemeralApp(extension_id);
|
| -}
|
| -
|
| bool HasIsolatedStorage(const ExtensionInfo& info) {
|
| if (!info.extension_manifest.get())
|
| return false;
|
|
|