| Index: extensions/common/extension.h
|
| diff --git a/extensions/common/extension.h b/extensions/common/extension.h
|
| index 933c47ce09d8cba6259a7468206621793c6cc55d..a96a19e2f224c03d111c33fd004b3b211b4fc07a 100644
|
| --- a/extensions/common/extension.h
|
| +++ b/extensions/common/extension.h
|
| @@ -335,20 +335,20 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
|
| return (creation_flags_ & WAS_INSTALLED_BY_OEM) != 0;
|
| }
|
|
|
| - // App-related.
|
| + // Type-related queries.
|
| bool is_app() const;
|
| bool is_platform_app() const;
|
| bool is_hosted_app() const;
|
| bool is_legacy_packaged_app() const;
|
| bool is_extension() const;
|
| + bool is_shared_module() const;
|
| + bool is_theme() const;
|
| +
|
| bool can_be_incognito_enabled() const;
|
|
|
| void AddWebExtentPattern(const URLPattern& pattern);
|
| const URLPatternSet& web_extent() const { return extent_; }
|
|
|
| - // Theme-related.
|
| - bool is_theme() const;
|
| -
|
| private:
|
| friend class base::RefCountedThreadSafe<Extension>;
|
|
|
|
|