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

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

Issue 535203003: Replace Profile* in declarative_api with BrowserContext* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove changes to unit-test; those have to wait until move. Created 6 years, 3 months 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 b1d9a7ae9e15e9be4f26e98696b90650dd4cbcc5..ce22ddcb62e150e314a5d3538fbe46c0072e0c77 100644
--- a/chrome/browser/extensions/api/declarative/test_rules_registry.cc
+++ b/chrome/browser/extensions/api/declarative/test_rules_registry.cc
@@ -18,12 +18,12 @@ TestRulesRegistry::TestRulesRegistry(content::BrowserThread::ID owner_thread,
webview_key) {}
TestRulesRegistry::TestRulesRegistry(
- Profile* profile,
+ content::BrowserContext* browser_context,
const std::string& event_name,
content::BrowserThread::ID owner_thread,
RulesCacheDelegate* cache_delegate,
const WebViewKey& webview_key)
- : RulesRegistry(profile,
+ : RulesRegistry(browser_context,
event_name,
owner_thread,
cache_delegate,

Powered by Google App Engine
This is Rietveld 408576698