Chromium Code Reviews| Index: chrome/browser/ui/sync/one_click_signin_sync_observer.h |
| diff --git a/chrome/browser/ui/sync/one_click_signin_sync_observer.h b/chrome/browser/ui/sync/one_click_signin_sync_observer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..055921fdcdfa81d5bd959b51f49dddf9d2bc238e |
| --- /dev/null |
| +++ b/chrome/browser/ui/sync/one_click_signin_sync_observer.h |
| @@ -0,0 +1,51 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_ |
| +#define CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_ |
| + |
| +#include "chrome/browser/sync/profile_sync_service_observer.h" |
| +#include "content/public/browser/web_contents_observer.h" |
| +#include "url/gurl.h" |
| + |
| +class ProfileSyncService; |
| + |
| +namespace content { |
| +class WebContents; |
| +} |
| + |
| +class OneClickSigninSyncObserver : public content::WebContentsObserver, |
| + public ProfileSyncServiceObserver { |
|
Roger Tawa OOO till Jul 10th
2014/03/31 20:10:38
Oops, hit send too quickly in previous comment. W
Ilya Sherman
2014/04/01 02:00:35
So, there are two ways to interpret this question:
|
| + public: |
| + // Waits for Sync to be initialized, then navigates the |web_contents| to the |
| + // |continue_url|. Instances of this class delete themselves once the job is |
| + // done. |
| + OneClickSigninSyncObserver(content::WebContents* web_contents, |
| + const GURL& continue_url); |
| + |
| + protected: |
| + // Exposed for testing. |
| + virtual ~OneClickSigninSyncObserver(); |
| + |
| + private: |
| + // content::WebContentsObserver: |
| + virtual void WebContentsDestroyed(content::WebContents* contents) OVERRIDE; |
| + |
| + // ProfileSyncServiceObserver: |
| + virtual void OnStateChanged() OVERRIDE; |
| + |
| + // Loads the |continue_url_| in the |web_contents()|. |
| + void LoadContinueUrl(); |
| + |
| + // Returns the ProfileSyncService associated with the |web_contents|. |
| + // The returned value may be NULL. |
| + ProfileSyncService* GetSyncService(content::WebContents* web_contents); |
| + |
| + // The URL to redirect to once Sync is initialized. |
| + const GURL continue_url_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(OneClickSigninSyncObserver); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_ |