Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4520)

Unified Diff: chrome/browser/extensions/api/declarative/test_rules_registry.cc

Issue 28273006: <webview>: Implement declarativeWebRequest API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Istiaque's comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/declarative/test_rules_registry.cc
diff --git a/chrome/browser/extensions/api/declarative/test_rules_registry.cc b/chrome/browser/extensions/api/declarative/test_rules_registry.cc
index d22ce15b18a0034f28dd138163fca131a65ecdff..38ff7d19595289a4e5fb3b233c6e446730243643 100644
--- a/chrome/browser/extensions/api/declarative/test_rules_registry.cc
+++ b/chrome/browser/extensions/api/declarative/test_rules_registry.cc
@@ -13,7 +13,8 @@ TestRulesRegistry::TestRulesRegistry(content::BrowserThread::ID owner_thread,
: RulesRegistry(NULL /*profile*/,
event_name,
owner_thread,
- NULL) {}
+ NULL,
+ WebViewKey(0, 0)) {}
TestRulesRegistry::TestRulesRegistry(
Profile* profile,
@@ -23,7 +24,8 @@ TestRulesRegistry::TestRulesRegistry(
: RulesRegistry(profile,
event_name,
owner_thread,
- cache_delegate) {}
+ cache_delegate,
+ WebViewKey(0, 0)) {}
std::string TestRulesRegistry::AddRulesImpl(
const std::string& extension_id,

Powered by Google App Engine
This is Rietveld 408576698