| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "content/public/browser/interstitial_page.h" | 11 #include "content/public/browser/interstitial_page.h" |
| 12 #include "content/public/browser/interstitial_page_delegate.h" | 12 #include "content/public/browser/interstitial_page_delegate.h" |
| 13 #include "url/gurl.h" | 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 class LoginHandler; | 15 class LoginHandler; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class WebContents; | 18 class WebContents; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| 22 class AuthChallengeInfo; | 22 class AuthChallengeInfo; |
| 23 } | 23 } |
| 24 | 24 |
| 25 // Placeholder interstitial for HTTP login prompts. This interstitial makes the | 25 // Placeholder interstitial for HTTP login prompts. This interstitial makes the |
| 26 // omnibox show the correct url when the login prompt is visible. | 26 // omnibox show the correct url when the login prompt is visible. |
| 27 class LoginInterstitialDelegate : public content::InterstitialPageDelegate { | 27 class LoginInterstitialDelegate : public content::InterstitialPageDelegate { |
| 28 public: | 28 public: |
| 29 // Interstitial type, used in tests. |
| 30 static content::InterstitialPageDelegate::TypeID kTypeForTesting; |
| 31 |
| 29 LoginInterstitialDelegate(content::WebContents* web_contents, | 32 LoginInterstitialDelegate(content::WebContents* web_contents, |
| 30 const GURL& request_url, | 33 const GURL& request_url, |
| 31 base::Closure& callback); | 34 base::Closure& callback); |
| 32 | 35 |
| 33 ~LoginInterstitialDelegate() override; | 36 ~LoginInterstitialDelegate() override; |
| 34 | 37 |
| 35 // content::InterstitialPageDelegate: | 38 // content::InterstitialPageDelegate: |
| 36 void CommandReceived(const std::string& command) override; | 39 void CommandReceived(const std::string& command) override; |
| 40 content::InterstitialPageDelegate::TypeID GetTypeForTesting() const override; |
| 37 | 41 |
| 38 protected: | 42 protected: |
| 39 std::string GetHTMLContents() override; | 43 std::string GetHTMLContents() override; |
| 40 | 44 |
| 41 private: | 45 private: |
| 42 base::Closure callback_; | 46 base::Closure callback_; |
| 43 | 47 |
| 44 DISALLOW_COPY_AND_ASSIGN(LoginInterstitialDelegate); | 48 DISALLOW_COPY_AND_ASSIGN(LoginInterstitialDelegate); |
| 45 }; | 49 }; |
| 46 | 50 |
| 47 #endif // CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ | 51 #endif // CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_ |
| OLD | NEW |