| Index: chrome/browser/ui/login/login_interstitial_delegate.h
|
| diff --git a/chrome/browser/ui/login/login_interstitial_delegate.h b/chrome/browser/ui/login/login_interstitial_delegate.h
|
| index c55a420623038a9e4d5f17be6ab2bb21406c97f8..8200a998c811bc2339a89a086c2fcffc2b3c0a04 100644
|
| --- a/chrome/browser/ui/login/login_interstitial_delegate.h
|
| +++ b/chrome/browser/ui/login/login_interstitial_delegate.h
|
| @@ -20,6 +20,7 @@ class WebContents;
|
|
|
| namespace net {
|
| class AuthChallengeInfo;
|
| +class SSLInfo;
|
| }
|
|
|
| // Placeholder interstitial for HTTP login prompts. This interstitial makes the
|
| @@ -28,7 +29,8 @@ class LoginInterstitialDelegate : public content::InterstitialPageDelegate {
|
| public:
|
| LoginInterstitialDelegate(content::WebContents* web_contents,
|
| const GURL& request_url,
|
| - base::Closure& callback);
|
| + base::Closure& callback,
|
| + const net::SSLInfo& ssl_info);
|
|
|
| virtual ~LoginInterstitialDelegate();
|
|
|
| @@ -37,9 +39,12 @@ class LoginInterstitialDelegate : public content::InterstitialPageDelegate {
|
|
|
| protected:
|
| virtual std::string GetHTMLContents() OVERRIDE;
|
| + virtual void OverrideEntry(content::NavigationEntry* entry) OVERRIDE;
|
|
|
| private:
|
| + content::WebContents* web_contents_;
|
| base::Closure callback_;
|
| + const net::SSLInfo& ssl_info_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(LoginInterstitialDelegate);
|
| };
|
|
|