Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9046)

Unified Diff: chrome/browser/ssl/ssl_blocking_page.cc

Issue 368143002: Add a chrome://interstitials page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android build Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ssl/ssl_blocking_page.h ('k') | chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_blocking_page.cc
diff --git a/chrome/browser/ssl/ssl_blocking_page.cc b/chrome/browser/ssl/ssl_blocking_page.cc
index 458a166768046d226b04431f58575424208c414c..fe67ddd8fe01bac6dfd4b5774b699e9c572fa2e6 100644
--- a/chrome/browser/ssl/ssl_blocking_page.cc
+++ b/chrome/browser/ssl/ssl_blocking_page.cc
@@ -362,9 +362,12 @@ SSLBlockingPage::SSLBlockingPage(
content::Source<Profile>(profile));
#endif
+ // chrome://interstitials page uses this class without actually creating an
+ // interstitial so that it can be debugged. Set |create_interstitial| to true
+ // if the page is going to be used as an actual interstitial and not just part
+ // of the chrome://interstitials webui.
interstitial_page_ = InterstitialPage::Create(
web_contents_, true, request_url, this);
- interstitial_page_->Show();
}
SSLBlockingPage::~SSLBlockingPage() {
@@ -384,6 +387,41 @@ SSLBlockingPage::~SSLBlockingPage() {
}
}
+// static
+void SSLBlockingPage::Show(content::WebContents* web_contents,
+ int cert_error,
+ const net::SSLInfo& ssl_info,
+ const GURL& request_url,
+ bool overridable,
+ bool strict_enforcement,
+ const base::Callback<void(bool)>& callback) {
+ SSLBlockingPage* ssl_blocking_page = new SSLBlockingPage(web_contents,
+ cert_error,
+ ssl_info,
+ request_url,
+ overridable,
+ strict_enforcement,
+ callback);
+ ssl_blocking_page->interstitial_page_->Show();
+}
+
+// static
+SSLBlockingPage* SSLBlockingPage::CreateForWebUI(
+ content::WebContents* web_contents,
+ int cert_error,
+ const net::SSLInfo& ssl_info,
+ const GURL& request_url,
+ bool overridable,
+ bool strict_enforcement) {
+ return new SSLBlockingPage(web_contents,
+ cert_error,
+ ssl_info,
+ request_url,
+ overridable,
+ strict_enforcement,
+ base::Callback<void(bool)>());
+}
+
std::string SSLBlockingPage::GetHTMLContents() {
if (trial_condition_ == kCondV1 || trial_condition_ == kCondV1LayoutV2Text)
return GetHTMLContentsV1();
« no previous file with comments | « chrome/browser/ssl/ssl_blocking_page.h ('k') | chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698