HomeSort by relevance Sort by last modified time
    Searched refs:WebAuthFlow (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/identity/
web_auth_flow.cc 44 WebAuthFlow::WebAuthFlow(
56 WebAuthFlow::~WebAuthFlow() {
72 void WebAuthFlow::Start() {
85 if (mode_ == WebAuthFlow::INTERACTIVE)
107 void WebAuthFlow::DetachDelegateAndDelete() {
112 void WebAuthFlow::OnShellWindowAdded(ShellWindow* shell_window) {
125 void WebAuthFlow::OnShellWindowIconChanged(ShellWindow* shell_window) {}
127 void WebAuthFlow::OnShellWindowRemoved(ShellWindow* shell_window)
    [all...]
gaia_web_auth_flow.h 39 class GaiaWebAuthFlow : public UbertokenConsumer, public WebAuthFlow::Delegate {
75 // WebAuthFlow::Delegate implementation.
76 virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) OVERRIDE;
81 // Creates a WebAuthFlow, which will navigate to |url|. Can override
83 virtual scoped_ptr<WebAuthFlow> CreateWebAuthFlow(GURL url);
92 scoped_ptr<WebAuthFlow> web_flow_;
web_auth_flow.h 29 // Controller class for web based auth flows. The WebAuthFlow creates
32 // |provider_url| passed to the WebAuthFlow constructor.
34 // The WebAuthFlow monitors the WebContents of the webview, and
44 // A WebAuthFlow can be started in Mode::SILENT, which never displays
46 class WebAuthFlow : public content::NotificationObserver,
78 WebAuthFlow(Delegate* delegate,
83 virtual ~WebAuthFlow();
143 DISALLOW_COPY_AND_ASSIGN(WebAuthFlow);
gaia_web_auth_flow.cc 82 void GaiaWebAuthFlow::OnAuthFlowFailure(WebAuthFlow::Failure failure) {
86 case WebAuthFlow::WINDOW_CLOSED:
89 case WebAuthFlow::LOAD_FAILED:
168 scoped_ptr<WebAuthFlow> GaiaWebAuthFlow::CreateWebAuthFlow(GURL url) {
169 return scoped_ptr<WebAuthFlow>(new WebAuthFlow(this,
172 WebAuthFlow::INTERACTIVE));
gaia_web_auth_flow_unittest.cc 17 class FakeWebAuthFlow : public WebAuthFlow {
19 explicit FakeWebAuthFlow(WebAuthFlow::Delegate* delegate)
20 : WebAuthFlow(delegate,
23 WebAuthFlow::INTERACTIVE) {}
49 virtual scoped_ptr<WebAuthFlow> CreateWebAuthFlow(GURL url) OVERRIDE {
50 return scoped_ptr<WebAuthFlow>(new FakeWebAuthFlow(this));
241 flow->OnAuthFlowFailure(WebAuthFlow::WINDOW_CLOSED);
identity_api.cc 557 WebAuthFlow::Mode mode =
559 WebAuthFlow::INTERACTIVE : WebAuthFlow::SILENT;
567 auth_flow_.reset(new WebAuthFlow(this, GetProfile(), auth_url, mode));
586 WebAuthFlow::Failure failure) {
588 case WebAuthFlow::WINDOW_CLOSED:
591 case WebAuthFlow::INTERACTION_REQUIRED:
594 case WebAuthFlow::LOAD_FAILED:
identity_api.h 198 public WebAuthFlow::Delegate {
212 // WebAuthFlow::Delegate implementation.
213 virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) OVERRIDE;
220 scoped_ptr<WebAuthFlow> auth_flow_;

Completed in 28 milliseconds