| Index: chrome/browser/invalidation/ticl_invalidation_service.h
|
| ===================================================================
|
| --- chrome/browser/invalidation/ticl_invalidation_service.h (revision 208727)
|
| +++ chrome/browser/invalidation/ticl_invalidation_service.h (working copy)
|
| @@ -7,50 +7,42 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/threading/non_thread_safe.h"
|
| -#include "base/timer.h"
|
| -#include "chrome/browser/invalidation/invalidation_service.h"
|
| +#include "chrome/browser/invalidation/invalidation_frontend.h"
|
| #include "chrome/browser/invalidation/invalidator_storage.h"
|
| -#include "chrome/browser/signin/oauth2_token_service.h"
|
| -#include "chrome/browser/signin/token_service.h"
|
| +#include "chrome/browser/signin/signin_global_error.h"
|
| #include "components/browser_context_keyed_service/browser_context_keyed_service.h"
|
| #include "content/public/browser/notification_observer.h"
|
| #include "content/public/browser/notification_registrar.h"
|
| -#include "net/base/backoff_entry.h"
|
| #include "sync/notifier/invalidation_handler.h"
|
| #include "sync/notifier/invalidator_registrar.h"
|
|
|
| class Profile;
|
| class SigninManagerBase;
|
| +class TokenService;
|
|
|
| namespace syncer {
|
| class Invalidator;
|
| }
|
|
|
| -// TODO: Remove this dependency. See crbug.com/243482.
|
| -namespace extensions {
|
| -class PushMessagingApiTest;
|
| -}
|
| -
|
| namespace invalidation {
|
|
|
| // This InvalidationService wraps the C++ Invalidation Client (TICL) library.
|
| // It provides invalidations for desktop platforms (Win, Mac, Linux).
|
| class TiclInvalidationService
|
| : public base::NonThreadSafe,
|
| - public InvalidationService,
|
| + public BrowserContextKeyedService,
|
| + public InvalidationFrontend,
|
| public content::NotificationObserver,
|
| - public OAuth2TokenService::Consumer,
|
| public syncer::InvalidationHandler {
|
| public:
|
| TiclInvalidationService(SigninManagerBase* signin,
|
| TokenService* token_service,
|
| - OAuth2TokenService* oauth2_token_service,
|
| Profile* profile);
|
| virtual ~TiclInvalidationService();
|
|
|
| void Init();
|
|
|
| - // InvalidationService implementation.
|
| + // InvalidationFrontend implementation.
|
| // It is an error to have registered handlers when Shutdown() is called.
|
| virtual void RegisterInvalidationHandler(
|
| syncer::InvalidationHandler* handler) OVERRIDE;
|
| @@ -63,24 +55,13 @@
|
| const invalidation::ObjectId& id,
|
| const syncer::AckHandle& ack_handle) OVERRIDE;
|
| virtual syncer::InvalidatorState GetInvalidatorState() const OVERRIDE;
|
| - virtual std::string GetInvalidatorClientId() const OVERRIDE;
|
| + virtual std::string GetInvalidatorClientId() const;
|
|
|
| // content::NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) OVERRIDE;
|
|
|
| - void RequestAccessToken();
|
| -
|
| - // OAuth2TokenService::Consumer implementation
|
| - virtual void OnGetTokenSuccess(
|
| - const OAuth2TokenService::Request* request,
|
| - const std::string& access_token,
|
| - const base::Time& expiration_time) OVERRIDE;
|
| - virtual void OnGetTokenFailure(
|
| - const OAuth2TokenService::Request* request,
|
| - const GoogleServiceAuthError& error) OVERRIDE;
|
| -
|
| // syncer::InvalidationHandler implementation.
|
| virtual void OnInvalidatorStateChange(
|
| syncer::InvalidatorState state) OVERRIDE;
|
| @@ -95,21 +76,19 @@
|
| void InitForTest(syncer::Invalidator* invalidator);
|
|
|
| friend class TiclInvalidationServiceTestDelegate;
|
| - friend class extensions::PushMessagingApiTest;
|
|
|
| private:
|
| bool IsReadyToStart();
|
| bool IsStarted();
|
|
|
| - void StartInvalidator();
|
| - void UpdateInvalidatorCredentials();
|
| + void Start();
|
| + void UpdateToken();
|
| void StopInvalidator();
|
| void Logout();
|
|
|
| Profile *const profile_;
|
| SigninManagerBase *const signin_manager_;
|
| TokenService *const token_service_;
|
| - OAuth2TokenService *const oauth2_token_service_;
|
|
|
| scoped_ptr<syncer::InvalidatorRegistrar> invalidator_registrar_;
|
| scoped_ptr<InvalidatorStorage> invalidator_storage_;
|
| @@ -117,19 +96,9 @@
|
|
|
| content::NotificationRegistrar notification_registrar_;
|
|
|
| - // TiclInvalidationService needs to remember access token in order to
|
| - // invalidate it with OAuth2TokenService.
|
| - std::string access_token_;
|
| -
|
| - // TiclInvalidationService needs to hold reference to access_token_request_
|
| - // for the duration of request in order to receive callbacks.
|
| - scoped_ptr<OAuth2TokenService::Request> access_token_request_;
|
| - base::OneShotTimer<TiclInvalidationService> request_access_token_retry_timer_;
|
| - net::BackoffEntry request_access_token_backoff_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(TiclInvalidationService);
|
| };
|
|
|
| -} // namespace invalidation
|
| +}
|
|
|
| #endif // CHROME_BROWSER_INVALIDATION_TICL_INVALIDATION_SERVICE_H_
|
|
|