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

Unified Diff: chrome/browser/profiles/profile_dependency_manager_unittest.cc

Issue 14141006: [components] Switch {RefCounted}ProfileKeyedService to use BrowserContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: trybots 2 Created 7 years, 8 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/profiles/profile_dependency_manager_unittest.cc
diff --git a/chrome/browser/profiles/profile_dependency_manager_unittest.cc b/chrome/browser/profiles/profile_dependency_manager_unittest.cc
index 458ff86dd0006c936ec74594b666e04c90471f77..1dab5fee46245da6add4baf5808b043ae77e1940 100644
--- a/chrome/browser/profiles/profile_dependency_manager_unittest.cc
+++ b/chrome/browser/profiles/profile_dependency_manager_unittest.cc
@@ -36,12 +36,12 @@ class TestService : public ProfileKeyedServiceFactory {
}
virtual ProfileKeyedService* BuildServiceInstanceFor(
- Profile* profile) const OVERRIDE {
+ content::BrowserContext* profile) const OVERRIDE {
ADD_FAILURE() << "This isn't part of the tests!";
return NULL;
}
- virtual void ProfileShutdown(Profile* profile) OVERRIDE {
+ virtual void ProfileShutdown(content::BrowserContext* profile) OVERRIDE {
fill_on_shutdown_->push_back(name_);
}
« no previous file with comments | « chrome/browser/profiles/gaia_info_update_service_factory.cc ('k') | chrome/browser/profiles/profile_keyed_base_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698