Index: chrome/browser/extensions/signin/scoped_gaia_auth_extension.h |
diff --git a/chrome/browser/extensions/signin/scoped_gaia_auth_extension.h b/chrome/browser/extensions/signin/scoped_gaia_auth_extension.h |
index cf3cf493a531741ac4cc4681b6a0cc982971a1ad..d032565b3d17f43fa6f5d22f262973757e8ff94b 100644 |
--- a/chrome/browser/extensions/signin/scoped_gaia_auth_extension.h |
+++ b/chrome/browser/extensions/signin/scoped_gaia_auth_extension.h |
@@ -7,18 +7,20 @@ |
#include "base/basictypes.h" |
-class Profile; |
+namespace content { |
+class BrowserContext; |
+} |
// ScopedGaiaAuthExtension loads gaia auth extension on construction if the |
// extension is not registered yet, and unloads it on destruction if it is no |
// longer used. |
class ScopedGaiaAuthExtension { |
public: |
- explicit ScopedGaiaAuthExtension(Profile* profile); |
+ explicit ScopedGaiaAuthExtension(content::BrowserContext* context); |
~ScopedGaiaAuthExtension(); |
private: |
- Profile* profile_; |
+ content::BrowserContext* browser_context_; |
DISALLOW_COPY_AND_ASSIGN(ScopedGaiaAuthExtension); |
}; |