| 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_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SSL_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SSL_MANAGER_H_ | 6 #define CHROME_BROWSER_SSL_MANAGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 14 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" | 14 #include "chrome/browser/renderer_host/resource_dispatcher_host.h" |
| 15 #include "chrome/browser/tab_contents/provisional_load_details.h" | 15 #include "chrome/browser/tab_contents/provisional_load_details.h" |
| 16 #include "chrome/browser/tab_contents/security_style.h" | 16 #include "chrome/browser/tab_contents/security_style.h" |
| 17 #include "chrome/common/notification_observer.h" | 17 #include "chrome/common/notification_observer.h" |
| 18 #include "chrome/common/notification_registrar.h" | 18 #include "chrome/common/notification_registrar.h" |
| 19 #include "chrome/common/render_messages.h" | |
| 20 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
| 21 #include "net/base/net_errors.h" | 20 #include "net/base/net_errors.h" |
| 22 #include "net/base/ssl_info.h" | 21 #include "net/base/ssl_info.h" |
| 23 #include "net/base/x509_certificate.h" | 22 #include "net/base/x509_certificate.h" |
| 24 #include "webkit/glue/console_message_level.h" | 23 #include "webkit/glue/console_message_level.h" |
| 25 #include "webkit/glue/resource_type.h" | 24 #include "webkit/glue/resource_type.h" |
| 26 | 25 |
| 27 class AutomationProvider; | 26 class AutomationProvider; |
| 28 class NavigationEntry; | 27 class NavigationEntry; |
| 29 class LoadFromMemoryCacheDetails; | 28 class LoadFromMemoryCacheDetails; |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 | 455 |
| 457 // The list of messages that should be displayed (in info bars) when the page | 456 // The list of messages that should be displayed (in info bars) when the page |
| 458 // currently loading had loaded. | 457 // currently loading had loaded. |
| 459 std::vector<SSLMessageInfo> pending_messages_; | 458 std::vector<SSLMessageInfo> pending_messages_; |
| 460 | 459 |
| 461 DISALLOW_COPY_AND_ASSIGN(SSLManager); | 460 DISALLOW_COPY_AND_ASSIGN(SSLManager); |
| 462 }; | 461 }; |
| 463 | 462 |
| 464 #endif // CHROME_BROWSER_SSL_MANAGER_H_ | 463 #endif // CHROME_BROWSER_SSL_MANAGER_H_ |
| 465 | 464 |
| OLD | NEW |