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

Unified 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 side-by-side diff with in-line comments
Download patch
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..ed1762bf6cd56f9ae9d1308f0a785625e9464114
--- /dev/null
+++ b/chrome/browser/ui/sync/one_click_signin_sync_observer.h
@@ -0,0 +1,50 @@
+// 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 {
+ 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);
+
+ private:
+ virtual ~OneClickSigninSyncObserver();
+
+ // 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_

Powered by Google App Engine
This is Rietveld 408576698