| Index: chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.cc
|
| diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.cc b/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.cc
|
| index 7dc19f7ade9a989e75b571794dd926fe437a03b9..f0a0c19b0c063949e135901e47f5f7923bc81c2c 100644
|
| --- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.cc
|
| +++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_rules_registry.cc
|
| @@ -36,12 +36,14 @@ namespace extensions {
|
|
|
| WebRequestRulesRegistry::WebRequestRulesRegistry(
|
| Profile* profile,
|
| - scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part)
|
| + scoped_ptr<RulesRegistryWithCache::RuleStorageOnUI>* ui_part,
|
| + const WebViewKey& webview_key)
|
| : RulesRegistryWithCache((ui_part ? profile : NULL),
|
| declarative_webrequest_constants::kOnRequest,
|
| content::BrowserThread::IO,
|
| true /*log_storage_init_delay*/,
|
| - ui_part),
|
| + ui_part,
|
| + webview_key),
|
| profile_id_(profile) {
|
| if (profile)
|
| extension_info_map_ = ExtensionSystem::Get(profile)->info_map();
|
|
|