| Index: chrome/browser/extensions/api/declarative_content/content_action.h
|
| diff --git a/chrome/browser/extensions/api/declarative_content/content_action.h b/chrome/browser/extensions/api/declarative_content/content_action.h
|
| index bb18d02996bbf21e3d3cd319d03c1498e00b9ebe..347cf53e86a47956373354367c6e66c7847753b5 100644
|
| --- a/chrome/browser/extensions/api/declarative_content/content_action.h
|
| +++ b/chrome/browser/extensions/api/declarative_content/content_action.h
|
| @@ -45,10 +45,14 @@ class ContentAction : public base::RefCounted<ContentAction> {
|
|
|
| // Applies or reverts this ContentAction on a particular tab for a particular
|
| // extension. Revert exists to keep the actions up to date as the page
|
| - // changes.
|
| + // changes. Reapply exists to reapply changes to a new page, even if the
|
| + // previous page also matched relevant conditions.
|
| virtual void Apply(const std::string& extension_id,
|
| const base::Time& extension_install_time,
|
| ApplyInfo* apply_info) const = 0;
|
| + virtual void Reapply(const std::string& extension_id,
|
| + const base::Time& extension_install_time,
|
| + ApplyInfo* apply_info) const = 0;
|
| virtual void Revert(const std::string& extension_id,
|
| const base::Time& extension_install_time,
|
| ApplyInfo* apply_info) const = 0;
|
|
|