OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_SSL_BLOCKING_PAGE_H_ | 5 #ifndef CHROME_BROWSER_SSL_SSL_BLOCKING_PAGE_H_ |
6 #define CHROME_BROWSER_SSL_BLOCKING_PAGE_H_ | 6 #define CHROME_BROWSER_SSL_SSL_BLOCKING_PAGE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "chrome/browser/ssl/ssl_error_info.h" | 10 #include "chrome/browser/ssl/ssl_error_info.h" |
11 #include "chrome/browser/tab_contents/interstitial_page.h" | 11 #include "chrome/browser/tab_contents/interstitial_page.h" |
12 | 12 |
13 class DictionaryValue; | 13 class DictionaryValue; |
14 class SSLCertErrorHandler; | 14 class SSLCertErrorHandler; |
15 | 15 |
16 // This class is responsible for showing/hiding the interstitial page that is | 16 // This class is responsible for showing/hiding the interstitial page that is |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // about this error. | 63 // about this error. |
64 Delegate* delegate_; | 64 Delegate* delegate_; |
65 | 65 |
66 // A flag to indicate if we've notified |delegate_| of the user's decision. | 66 // A flag to indicate if we've notified |delegate_| of the user's decision. |
67 bool delegate_has_been_notified_; | 67 bool delegate_has_been_notified_; |
68 | 68 |
69 | 69 |
70 DISALLOW_COPY_AND_ASSIGN(SSLBlockingPage); | 70 DISALLOW_COPY_AND_ASSIGN(SSLBlockingPage); |
71 }; | 71 }; |
72 | 72 |
73 #endif // #ifndef CHROME_BROWSER_SSL_BLOCKING_PAGE_H_ | 73 #endif // CHROME_BROWSER_SSL_SSL_BLOCKING_PAGE_H_ |
OLD | NEW |