| Index: extensions/common/extension.h
|
| diff --git a/extensions/common/extension.h b/extensions/common/extension.h
|
| index 10df63c9797875659a657c31ca0a7535ca1a2321..a96539b2bfc8d73bb99a7bef3ee56012b51ddb1a 100644
|
| --- a/extensions/common/extension.h
|
| +++ b/extensions/common/extension.h
|
| @@ -162,8 +162,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
|
| // Unused - was part of an abandoned experiment.
|
| REQUIRE_PERMISSIONS_CONSENT = 1 << 8,
|
|
|
| - // |IS_EPHEMERAL| identifies ephemeral apps (experimental), which are not
|
| - // permanently installed.
|
| + // Unused - this flag has been moved to ExtensionPrefs.
|
| IS_EPHEMERAL = 1 << 9,
|
|
|
| // |WAS_INSTALLED_BY_OEM| installed by an OEM (e.g on Chrome OS) and should
|
| @@ -332,7 +331,6 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
|
| bool was_installed_by_oem() const {
|
| return (creation_flags_ & WAS_INSTALLED_BY_OEM) != 0;
|
| }
|
| - bool is_ephemeral() const { return (creation_flags_ & IS_EPHEMERAL) != 0; }
|
|
|
| // App-related.
|
| bool is_app() const;
|
|
|