| Index: chrome/browser/extensions/api/declarative_content/content_rules_registry.cc
|
| diff --git a/chrome/browser/extensions/api/declarative_content/content_rules_registry.cc b/chrome/browser/extensions/api/declarative_content/content_rules_registry.cc
|
| index 99f149082463832999b2ec438c3586094518bf4a..bc90036788514662e80d7db1b6e310e039ea4d0f 100644
|
| --- a/chrome/browser/extensions/api/declarative_content/content_rules_registry.cc
|
| +++ b/chrome/browser/extensions/api/declarative_content/content_rules_registry.cc
|
| @@ -23,12 +23,14 @@ namespace extensions {
|
|
|
| ContentRulesRegistry::ContentRulesRegistry(
|
| Profile* profile,
|
| - scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part)
|
| + scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part,
|
| + const WebViewKey& webview_key)
|
| : RulesRegistryWithCache((ui_part ? profile : NULL),
|
| declarative_content_constants::kOnPageChanged,
|
| content::BrowserThread::UI,
|
| false /*log_storage_init_delay*/,
|
| - ui_part),
|
| + ui_part,
|
| + webview_key),
|
| profile_(profile) {
|
| extension_info_map_ = ExtensionSystem::Get(profile)->info_map();
|
|
|
|
|