Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: chrome/browser/ui/sync/one_click_signin_sync_observer.h

Issue 196783002: Export a private webstore API to call into the new inline sign-in flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Redirect to the continue URL when Sync is disabled Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_
6 #define CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_
7
8 #include "chrome/browser/sync/profile_sync_service_observer.h"
9 #include "content/public/browser/web_contents_observer.h"
10 #include "url/gurl.h"
11
12 class ProfileSyncService;
13
14 namespace content {
15 class WebContents;
16 }
17
18
19 class OneClickSigninSyncObserver : public content::WebContentsObserver,
20 public ProfileSyncServiceObserver {
21 public:
22 // Waits for Sync to be initialized, then navigates the |web_contents| to the
23 // |continue_url|. Instances of this class delete themselves once the job is
24 // done.
25 OneClickSigninSyncObserver(content::WebContents* web_contents,
26 const GURL& continue_url);
27
28 private:
29 virtual ~OneClickSigninSyncObserver();
30
31 // content::WebContentsObserver:
32 virtual void WebContentsDestroyed(content::WebContents* contents) OVERRIDE;
33
34 // ProfileSyncServiceObserver:
35 virtual void OnStateChanged() OVERRIDE;
36
37 // Loads the |continue_url_| in the |web_contents()|.
38 void LoadContinueUrl();
39
40 // Returns the ProfileSyncService associated with the |web_contents|.
41 // The returned value may be NULL.
42 ProfileSyncService* GetSyncService(content::WebContents* web_contents);
43
44 // The URL to redirect to once Sync is initialized.
45 const GURL continue_url_;
46
47 DISALLOW_COPY_AND_ASSIGN(OneClickSigninSyncObserver);
48 };
49
50 #endif // CHROME_BROWSER_UI_SYNC_ONE_CLICK_SIGNIN_SYNC_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698