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

Side by Side Diff: content/common/resource_messages.h

Issue 2937563002: Remove the EV Certs Whitelist (Closed)
Patch Set: Update comment Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « content/common/common_param_traits_unittest.cc ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // IPC messages for resource loading. 5 // IPC messages for resource loading.
6 // 6 //
7 // NOTE: All messages must send an |int request_id| as their first parameter. 7 // NOTE: All messages must send an |int request_id| as their first parameter.
8 8
9 // Multiply-included message file, hence no include guard. 9 // Multiply-included message file, hence no include guard.
10 10
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 #undef IPC_MESSAGE_EXPORT 140 #undef IPC_MESSAGE_EXPORT
141 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 141 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
142 142
143 IPC_ENUM_TRAITS_MAX_VALUE( \ 143 IPC_ENUM_TRAITS_MAX_VALUE( \
144 net::HttpResponseInfo::ConnectionInfo, \ 144 net::HttpResponseInfo::ConnectionInfo, \
145 net::HttpResponseInfo::NUM_OF_CONNECTION_INFOS - 1) 145 net::HttpResponseInfo::NUM_OF_CONNECTION_INFOS - 1)
146 146
147 IPC_ENUM_TRAITS_MAX_VALUE(net::TokenBindingParam, net::TB_PARAM_ECDSAP256) 147 IPC_ENUM_TRAITS_MAX_VALUE(net::TokenBindingParam, net::TB_PARAM_ECDSAP256)
148 IPC_ENUM_TRAITS_MAX_VALUE(net::SSLInfo::HandshakeType, 148 IPC_ENUM_TRAITS_MAX_VALUE(net::SSLInfo::HandshakeType,
149 net::SSLInfo::HANDSHAKE_FULL) 149 net::SSLInfo::HANDSHAKE_FULL)
150 IPC_ENUM_TRAITS_MAX_VALUE(net::ct::EVPolicyCompliance,
151 net::ct::EVPolicyCompliance::EV_POLICY_MAX)
152 IPC_ENUM_TRAITS_MAX_VALUE( 150 IPC_ENUM_TRAITS_MAX_VALUE(
153 net::ct::CertPolicyCompliance, 151 net::ct::CertPolicyCompliance,
154 net::ct::CertPolicyCompliance::CERT_POLICY_BUILD_NOT_TIMELY) 152 net::ct::CertPolicyCompliance::CERT_POLICY_BUILD_NOT_TIMELY)
155 IPC_ENUM_TRAITS_MAX_VALUE(net::OCSPVerifyResult::ResponseStatus, 153 IPC_ENUM_TRAITS_MAX_VALUE(net::OCSPVerifyResult::ResponseStatus,
156 net::OCSPVerifyResult::PARSE_RESPONSE_DATA_ERROR) 154 net::OCSPVerifyResult::PARSE_RESPONSE_DATA_ERROR)
157 IPC_ENUM_TRAITS_MAX_VALUE(net::OCSPRevocationStatus, 155 IPC_ENUM_TRAITS_MAX_VALUE(net::OCSPRevocationStatus,
158 net::OCSPRevocationStatus::UNKNOWN) 156 net::OCSPRevocationStatus::UNKNOWN)
159 157
160 IPC_ENUM_TRAITS_MAX_VALUE(content::FetchRequestMode, 158 IPC_ENUM_TRAITS_MAX_VALUE(content::FetchRequestMode,
161 content::FETCH_REQUEST_MODE_LAST) 159 content::FETCH_REQUEST_MODE_LAST)
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 401
404 // Sent when the renderer process deletes a resource loader. 402 // Sent when the renderer process deletes a resource loader.
405 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 403 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
406 int /* request_id */) 404 int /* request_id */)
407 405
408 // Sent by the renderer when a resource request changes priority. 406 // Sent by the renderer when a resource request changes priority.
409 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 407 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
410 int /* request_id */, 408 int /* request_id */,
411 net::RequestPriority, 409 net::RequestPriority,
412 int /* intra_priority_value */) 410 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/common/common_param_traits_unittest.cc ('k') | content/common/resource_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698