Index: chrome/test/testing_profile.h |
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h |
index 154294f2691c54cd50080a69df0a12e5bd1485f6..3474b6594ddfa64c46aed038c49c2d1375034553 100644 |
--- a/chrome/test/testing_profile.h |
+++ b/chrome/test/testing_profile.h |
@@ -274,6 +274,7 @@ class TestingProfile : public Profile { |
void BlockUntilHistoryProcessesPendingRequests(); |
// Creates and initializes a profile sync service if the tests require one. |
+ virtual AuthenticationService* GetAuthenticationService(); |
virtual TokenService* GetTokenService(); |
virtual ProfileSyncService* GetProfileSyncService(); |
virtual ProfileSyncService* GetProfileSyncService( |
@@ -322,6 +323,10 @@ class TestingProfile : public Profile { |
// is invoked. |
scoped_refptr<ProtocolHandlerRegistry> protocol_handler_registry_; |
+ // The AuthenticationService. Created by CreateAuthenticationService. Filled |
+ // with dummy data. |
+ scoped_ptr<AuthenticationService> authentication_service_; |
+ |
// The TokenService. Created by CreateTokenService. Filled with dummy data. |
scoped_ptr<TokenService> token_service_; |