ProfilePolicyConnectorFactory: Refactoring from Profile to BrowserContext.
[chromium-blink-merge.git] / chrome / browser / ui / webui / signin / inline_login_handler_impl.h
blob4214cb7d25027f85b17ea5f8114047b2ca680004
1 // Copyright 2013 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.
5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_INLINE_LOGIN_HANDLER_IMPL_H_
6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_INLINE_LOGIN_HANDLER_IMPL_H_
8 #include <string>
10 #include "base/memory/scoped_ptr.h"
11 #include "base/memory/weak_ptr.h"
12 #include "chrome/browser/ui/sync/one_click_signin_sync_starter.h"
13 #include "chrome/browser/ui/webui/signin/inline_login_handler.h"
15 class GaiaAuthFetcher;
17 // Implementation for the inline login WebUI handler on desktop Chrome. Once
18 // CrOS migrates to the same webview approach as desktop Chrome, much of the
19 // code in this class should move to its base class |InlineLoginHandler|.
20 class InlineLoginHandlerImpl : public InlineLoginHandler,
21 public content::WebContentsObserver {
22 public:
23 InlineLoginHandlerImpl();
24 ~InlineLoginHandlerImpl() override;
26 using InlineLoginHandler::web_ui;
28 base::WeakPtr<InlineLoginHandlerImpl> GetWeakPtr() {
29 return weak_factory_.GetWeakPtr();
32 Browser* GetDesktopBrowser();
33 void SyncStarterCallback(OneClickSigninSyncStarter::SyncSetupResult result);
34 // Closes the current tab and shows the account management view of the avatar
35 // bubble if |show_account_management| is true.
36 void CloseTab(bool show_account_management);
37 void HandleLoginError(const std::string& error_msg);
39 private:
40 // InlineLoginHandler overrides:
41 void SetExtraInitParams(base::DictionaryValue& params) override;
42 void CompleteLogin(const base::ListValue* args) override;
44 // Overridden from content::WebContentsObserver overrides.
45 void DidCommitProvisionalLoadForFrame(
46 content::RenderFrameHost* render_frame_host,
47 const GURL& url,
48 ui::PageTransition transition_type) override;
50 // True if the user has navigated to untrusted domains during the signin
51 // process.
52 bool confirm_untrusted_signin_;
54 base::WeakPtrFactory<InlineLoginHandlerImpl> weak_factory_;
56 DISALLOW_COPY_AND_ASSIGN(InlineLoginHandlerImpl);
59 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_INLINE_LOGIN_HANDLER_IMPL_H_