| Index: extensions/common/features/simple_feature.h
|
| diff --git a/extensions/common/features/simple_feature.h b/extensions/common/features/simple_feature.h
|
| index cefd73067da70237e588a39988e8af66ffba972b..a3323121888599d2795b52ea32f6e6e2889c5e0f 100644
|
| --- a/extensions/common/features/simple_feature.h
|
| +++ b/extensions/common/features/simple_feature.h
|
| @@ -77,6 +77,7 @@ class SimpleFeature : public Feature {
|
|
|
| // extension::Feature:
|
| Availability IsAvailableToManifest(const std::string& extension_id,
|
| + const std::string& hashed_id,
|
| Manifest::Type type,
|
| Manifest::Location location,
|
| int manifest_version,
|
| @@ -94,8 +95,10 @@ class SimpleFeature : public Feature {
|
|
|
| bool IsInternal() const override;
|
|
|
| - bool IsIdInBlacklist(const std::string& extension_id) const override;
|
| - bool IsIdInWhitelist(const std::string& extension_id) const override;
|
| + bool IsIdInBlacklist(const std::string& extension_id,
|
| + const std::string& hashed_id) const override;
|
| + bool IsIdInWhitelist(const std::string& extension_id,
|
| + const std::string& hashed_id) const override;
|
|
|
| static bool IsIdInArray(const std::string& extension_id,
|
| const char* const array[],
|
|
|