| Index: chrome/browser/ssl/ssl_blocking_page.h
|
| diff --git a/chrome/browser/ssl/ssl_blocking_page.h b/chrome/browser/ssl/ssl_blocking_page.h
|
| index 605115854af52bd05e0c62adbebd1dbd44160c1d..4f42e2387318ae371ed7e02393ecf07c5b17105c 100644
|
| --- a/chrome/browser/ssl/ssl_blocking_page.h
|
| +++ b/chrome/browser/ssl/ssl_blocking_page.h
|
| @@ -14,6 +14,7 @@
|
| #include "chrome/browser/history/history_service.h"
|
| #include "content/public/browser/interstitial_page_delegate.h"
|
| #include "net/ssl/ssl_info.h"
|
| +#include "ssl_error_info.h"
|
| #include "url/gurl.h"
|
|
|
| namespace base {
|
| @@ -120,12 +121,17 @@ class SSLBlockingPage : public content::InterstitialPageDelegate,
|
| bool captive_portal_no_response_;
|
| // Was a captive portal detected?
|
| bool captive_portal_detected_;
|
| + // Used to find if the version of Windows XP is SP3 or lower.
|
| + static bool WindowsVersionSP3Lower();
|
|
|
| // For the FieldTrial: this contains the name of the condition.
|
| std::string trial_condition_;
|
|
|
| content::NotificationRegistrar registrar_;
|
|
|
| + FRIEND_TEST_ALL_PREFIXES(SSLBlockingPageTest,
|
| + SSLBlockingPageWindowsVersionTest);
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(SSLBlockingPage);
|
| };
|
|
|
|
|