| 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 347cf53e86a47956373354367c6e66c7847753b5..ab191c3e2c174f9316efc34366023a3aa6d0ada1 100644
|
| --- a/chrome/browser/extensions/api/declarative_content/content_action.h
|
| +++ b/chrome/browser/extensions/api/declarative_content/content_action.h
|
| @@ -63,10 +63,12 @@ class ContentAction : public base::RefCounted<ContentAction> {
|
| // Sets |error| and returns NULL in case of a semantic error that cannot
|
| // be caught by schema validation. Sets |bad_message| and returns NULL
|
| // in case the input is syntactically unexpected.
|
| - static scoped_refptr<ContentAction> Create(const Extension* extension,
|
| - const base::Value& json_action,
|
| - std::string* error,
|
| - bool* bad_message);
|
| + static scoped_refptr<ContentAction> Create(
|
| + content::BrowserContext* browser_context,
|
| + const Extension* extension,
|
| + const base::Value& json_action,
|
| + std::string* error,
|
| + bool* bad_message);
|
|
|
| protected:
|
| friend class base::RefCounted<ContentAction>;
|
|
|