| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_SSL_STATUS_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ | 6 #define CONTENT_PUBLIC_COMMON_SSL_STATUS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "content/public/common/security_style.h" | 10 #include "content/public/common/security_style.h" |
| 11 #include "net/base/cert_status_flags.h" | 11 #include "net/base/cert_status_flags.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 | 14 |
| 15 // Collects the SSL information for this NavigationEntry. | 15 // Collects the SSL information for this NavigationEntry. |
| 16 struct CONTENT_EXPORT SSLStatus { | 16 struct CONTENT_EXPORT SSLStatus { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 45 int security_bits; | 45 int security_bits; |
| 46 int connection_status; | 46 int connection_status; |
| 47 // A combination of the ContentStatusFlags above. | 47 // A combination of the ContentStatusFlags above. |
| 48 int content_status; | 48 int content_status; |
| 49 | 49 |
| 50 // Copy and assignment is explicitly allowed for this class. | 50 // Copy and assignment is explicitly allowed for this class. |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace content | 53 } // namespace content |
| 54 | 54 |
| 55 #endif // CONTENT_PUBLIC_BROWSER_SSL_STATUS_H_ | 55 #endif // CONTENT_PUBLIC_COMMON_SSL_STATUS_H_ |
| OLD | NEW |