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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_
6 #define CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_
10 #include "base/callback.h"
11 #include "content/public/browser/interstitial_page.h"
12 #include "content/public/browser/interstitial_page_delegate.h"
22 class AuthChallengeInfo
;
25 // Placeholder interstitial for HTTP login prompts. This interstitial makes the
26 // omnibox show the correct url when the login prompt is visible.
27 class LoginInterstitialDelegate
: public content::InterstitialPageDelegate
{
29 // Interstitial type, used in tests.
30 static content::InterstitialPageDelegate::TypeID kTypeForTesting
;
32 LoginInterstitialDelegate(content::WebContents
* web_contents
,
33 const GURL
& request_url
,
34 base::Closure
& callback
);
36 ~LoginInterstitialDelegate() override
;
38 // content::InterstitialPageDelegate:
39 void CommandReceived(const std::string
& command
) override
;
40 content::InterstitialPageDelegate::TypeID
GetTypeForTesting() const override
;
43 std::string
GetHTMLContents() override
;
46 base::Closure callback_
;
48 DISALLOW_COPY_AND_ASSIGN(LoginInterstitialDelegate
);
51 #endif // CHROME_BROWSER_UI_LOGIN_LOGIN_INTERSTITIAL_DELEGATE_H_