Index: chrome/browser/extensions/api/identity/identity_apitest.cc |
diff --git a/chrome/browser/extensions/api/identity/identity_apitest.cc b/chrome/browser/extensions/api/identity/identity_apitest.cc |
index 9bf130d64a4e7858b8a6ea2d68f6b25545fc91c3..e2c0ebbd25ab16d183ed5c1eae5981f6e9d5c799 100644 |
--- a/chrome/browser/extensions/api/identity/identity_apitest.cc |
+++ b/chrome/browser/extensions/api/identity/identity_apitest.cc |
@@ -180,8 +180,8 @@ class TestOAuth2MintTokenFlow : public OAuth2MintTokenFlow { |
OAuth2MintTokenFlow::Delegate* delegate_; |
}; |
-ProfileKeyedService* IdentityAPITestFactory(Profile* profile) { |
- return new IdentityAPI(profile); |
+ProfileKeyedService* IdentityAPITestFactory(content::BrowserContext* profile) { |
Jói
2013/04/23 22:45:22
nit: Might be nice to rename |profile| to |context
Paweł Hajdan Jr.
2013/04/23 22:58:11
I think I'll be changing that later, also includin
Jói
2013/04/24 09:09:10
OK, fine by me.
|
+ return new IdentityAPI(static_cast<Profile*>(profile)); |
} |
} // namespace |