| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "content/public/browser/notification_observer.h" | 10 #include "content/public/browser/notification_observer.h" |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 // Starts the flow. | 85 // Starts the flow. |
| 86 virtual void Start(); | 86 virtual void Start(); |
| 87 | 87 |
| 88 // Prevents further calls to the delegate and deletes the flow. | 88 // Prevents further calls to the delegate and deletes the flow. |
| 89 void DetachDelegateAndDelete(); | 89 void DetachDelegateAndDelete(); |
| 90 | 90 |
| 91 private: | 91 private: |
| 92 friend class ::WebAuthFlowTest; | 92 friend class ::WebAuthFlowTest; |
| 93 | 93 |
| 94 // ::AppWindowRegistry::Observer implementation. | 94 // ::AppWindowRegistry::Observer implementation. |
| 95 virtual void OnAppWindowAdded(AppWindow* app_window) OVERRIDE; | 95 virtual void OnAppWindowAdded(AppWindow* app_window) override; |
| 96 virtual void OnAppWindowRemoved(AppWindow* app_window) OVERRIDE; | 96 virtual void OnAppWindowRemoved(AppWindow* app_window) override; |
| 97 | 97 |
| 98 // NotificationObserver implementation. | 98 // NotificationObserver implementation. |
| 99 virtual void Observe(int type, | 99 virtual void Observe(int type, |
| 100 const content::NotificationSource& source, | 100 const content::NotificationSource& source, |
| 101 const content::NotificationDetails& details) OVERRIDE; | 101 const content::NotificationDetails& details) override; |
| 102 | 102 |
| 103 // WebContentsObserver implementation. | 103 // WebContentsObserver implementation. |
| 104 virtual void DidStopLoading(content::RenderViewHost* render_view_host) | 104 virtual void DidStopLoading(content::RenderViewHost* render_view_host) |
| 105 OVERRIDE; | 105 override; |
| 106 virtual void DidNavigateMainFrame( | 106 virtual void DidNavigateMainFrame( |
| 107 const content::LoadCommittedDetails& details, | 107 const content::LoadCommittedDetails& details, |
| 108 const content::FrameNavigateParams& params) OVERRIDE; | 108 const content::FrameNavigateParams& params) override; |
| 109 virtual void RenderProcessGone(base::TerminationStatus status) OVERRIDE; | 109 virtual void RenderProcessGone(base::TerminationStatus status) override; |
| 110 virtual void DidStartProvisionalLoadForFrame( | 110 virtual void DidStartProvisionalLoadForFrame( |
| 111 content::RenderFrameHost* render_frame_host, | 111 content::RenderFrameHost* render_frame_host, |
| 112 const GURL& validated_url, | 112 const GURL& validated_url, |
| 113 bool is_error_page, | 113 bool is_error_page, |
| 114 bool is_iframe_srcdoc) OVERRIDE; | 114 bool is_iframe_srcdoc) override; |
| 115 virtual void DidFailProvisionalLoad( | 115 virtual void DidFailProvisionalLoad( |
| 116 content::RenderFrameHost* render_frame_host, | 116 content::RenderFrameHost* render_frame_host, |
| 117 const GURL& validated_url, | 117 const GURL& validated_url, |
| 118 int error_code, | 118 int error_code, |
| 119 const base::string16& error_description) OVERRIDE; | 119 const base::string16& error_description) override; |
| 120 | 120 |
| 121 void BeforeUrlLoaded(const GURL& url); | 121 void BeforeUrlLoaded(const GURL& url); |
| 122 void AfterUrlLoaded(); | 122 void AfterUrlLoaded(); |
| 123 | 123 |
| 124 Delegate* delegate_; | 124 Delegate* delegate_; |
| 125 Profile* profile_; | 125 Profile* profile_; |
| 126 GURL provider_url_; | 126 GURL provider_url_; |
| 127 Mode mode_; | 127 Mode mode_; |
| 128 | 128 |
| 129 AppWindow* app_window_; | 129 AppWindow* app_window_; |
| 130 std::string app_window_key_; | 130 std::string app_window_key_; |
| 131 bool embedded_window_created_; | 131 bool embedded_window_created_; |
| 132 | 132 |
| 133 content::NotificationRegistrar registrar_; | 133 content::NotificationRegistrar registrar_; |
| 134 | 134 |
| 135 DISALLOW_COPY_AND_ASSIGN(WebAuthFlow); | 135 DISALLOW_COPY_AND_ASSIGN(WebAuthFlow); |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace extensions | 138 } // namespace extensions |
| 139 | 139 |
| 140 #endif // CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ | 140 #endif // CHROME_BROWSER_EXTENSIONS_API_IDENTITY_WEB_AUTH_FLOW_H_ |
| OLD | NEW |