Index: chrome/browser/ssl/captive_portal_blocking_page.h |
diff --git a/chrome/browser/ssl/captive_portal_blocking_page.h b/chrome/browser/ssl/captive_portal_blocking_page.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..de90d565daa8612c0abc440f4b1925b64542b046 |
--- /dev/null |
+++ b/chrome/browser/ssl/captive_portal_blocking_page.h |
@@ -0,0 +1,46 @@ |
+// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
mmenke
2014/06/24 18:09:26
nit: New files shouldn't use the (c)
meacer
2014/10/22 23:04:28
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_SSL_CAPTIVE_PORTAL_BLOCKING_PAGE_H_ |
+#define CHROME_BROWSER_SSL_CAPTIVE_PORTAL_BLOCKING_PAGE_H_ |
+ |
+#include <string> |
+ |
+#include "base/macros.h" |
+#include "content/public/browser/interstitial_page_delegate.h" |
+#include "url/gurl.h" |
+ |
+namespace content { |
+class InterstitialPage; |
+class WebContents; |
+} |
+ |
+// This class is responsible for showing/hiding the interstitial page that is |
+// shown when a captive portal and an SSL error is detected. |
+// It deletes itself when the interstitial page is closed.. |
mmenke
2014/06/24 18:09:26
nit: Remove extra period
meacer
2014/10/22 23:04:29
Done.
|
+// |
+// This class should only be used on the UI thread because WebContents should |
+// not be access on any other thread. |
+class CaptivePortalBlockingPage : public content::InterstitialPageDelegate { |
+ public: |
+ CaptivePortalBlockingPage(content::WebContents* web_contents, |
+ const GURL& request_url); |
+ virtual ~CaptivePortalBlockingPage(); |
+ |
+ protected: |
mmenke
2014/06/24 18:09:26
optional: These can all be private instead. Or p
meacer
2014/10/22 23:04:29
Done.
|
+ // InterstitialPageDelegate implementation. |
+ virtual std::string GetHTMLContents() OVERRIDE; |
+ virtual void CommandReceived(const std::string& command) OVERRIDE; |
+ |
+ private: |
+ content::WebContents* web_contents_; |
+ // The URL which had the SSL error. |
+ const GURL request_url_; |
+ // The interstitial page owns us. |
mmenke
2014/06/24 18:09:26
nit: Don't use "us" in comments, as it can be amb
meacer
2014/10/22 23:04:29
Done.
|
+ content::InterstitialPage* interstitial_page_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(CaptivePortalBlockingPage); |
+}; |
+ |
+#endif // CHROME_BROWSER_SSL_CAPTIVE_PORTAL_BLOCKING_PAGE_H_ |