Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2389)

Unified Diff: content/public/common/ssl_status.h

Issue 2272603003: Route key_exchange_group over to DevTools. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/common/resource_response_info.h ('k') | content/public/common/ssl_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/ssl_status.h
diff --git a/content/public/common/ssl_status.h b/content/public/common/ssl_status.h
index c9ada0f8942446002225c03e707619b150520c44..331a80d0a510faace3b2ff66d34a584db099e4bd 100644
--- a/content/public/common/ssl_status.h
+++ b/content/public/common/ssl_status.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
#define CONTENT_PUBLIC_COMMON_SSL_STATUS_H_
+#include <stdint.h>
+
#include <vector>
#include "content/common/content_export.h"
@@ -55,7 +57,7 @@ struct CONTENT_EXPORT SSLStatus {
true) &&
cert_status == status.cert_status &&
security_bits == status.security_bits &&
- key_exchange_info == status.key_exchange_info &&
+ key_exchange_group == status.key_exchange_group &&
connection_status == status.connection_status &&
content_status == status.content_status &&
sct_statuses == status.sct_statuses &&
@@ -66,7 +68,7 @@ struct CONTENT_EXPORT SSLStatus {
scoped_refptr<net::X509Certificate> certificate;
net::CertStatus cert_status;
int security_bits;
- int key_exchange_info;
+ uint16_t key_exchange_group;
int connection_status;
// A combination of the ContentStatusFlags above.
int content_status;
« no previous file with comments | « content/public/common/resource_response_info.h ('k') | content/public/common/ssl_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698