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 41 WebAuthFlow::WebAuthFlow(
53 WebAuthFlow::~WebAuthFlow() {
69 void WebAuthFlow::Start() {
83 if (mode_ == WebAuthFlow::INTERACTIVE)
105 void WebAuthFlow::DetachDelegateAndDelete() {
110 void WebAuthFlow::OnShellWindowAdded(ShellWindow* shell_window) {
123 void WebAuthFlow::OnShellWindowIconChanged(ShellWindow* shell_window) {}
125 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();
142 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 550 WebAuthFlow::Mode mode =
552 WebAuthFlow::INTERACTIVE : WebAuthFlow::SILENT;
560 auth_flow_.reset(new WebAuthFlow(this, profile(), auth_url, mode));
579 WebAuthFlow::Failure failure) {
581 case WebAuthFlow::WINDOW_CLOSED:
584 case WebAuthFlow::INTERACTION_REQUIRED:
587 case WebAuthFlow::LOAD_FAILED:
identity_api.h 180 public WebAuthFlow::Delegate {
194 // WebAuthFlow::Delegate implementation.
195 virtual void OnAuthFlowFailure(WebAuthFlow::Failure failure) OVERRIDE;
202 scoped_ptr<WebAuthFlow> auth_flow_;

Completed in 65 milliseconds