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

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

Issue 1415923015: Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove console message; see comment to mike Created 5 years 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/frame_messages.h ('k') | content/public/common/resource_response.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 #include "base/memory/shared_memory.h" 10 #include "base/memory/shared_memory.h"
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 IPC_STRUCT_TRAITS_MEMBER(data) 108 IPC_STRUCT_TRAITS_MEMBER(data)
109 IPC_STRUCT_TRAITS_END() 109 IPC_STRUCT_TRAITS_END()
110 110
111 IPC_STRUCT_TRAITS_BEGIN(content::ResourceResponseInfo) 111 IPC_STRUCT_TRAITS_BEGIN(content::ResourceResponseInfo)
112 IPC_STRUCT_TRAITS_MEMBER(request_time) 112 IPC_STRUCT_TRAITS_MEMBER(request_time)
113 IPC_STRUCT_TRAITS_MEMBER(response_time) 113 IPC_STRUCT_TRAITS_MEMBER(response_time)
114 IPC_STRUCT_TRAITS_MEMBER(headers) 114 IPC_STRUCT_TRAITS_MEMBER(headers)
115 IPC_STRUCT_TRAITS_MEMBER(mime_type) 115 IPC_STRUCT_TRAITS_MEMBER(mime_type)
116 IPC_STRUCT_TRAITS_MEMBER(charset) 116 IPC_STRUCT_TRAITS_MEMBER(charset)
117 IPC_STRUCT_TRAITS_MEMBER(security_info) 117 IPC_STRUCT_TRAITS_MEMBER(security_info)
118 IPC_STRUCT_TRAITS_MEMBER(has_major_certificate_errors)
118 IPC_STRUCT_TRAITS_MEMBER(content_length) 119 IPC_STRUCT_TRAITS_MEMBER(content_length)
119 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length) 120 IPC_STRUCT_TRAITS_MEMBER(encoded_data_length)
120 IPC_STRUCT_TRAITS_MEMBER(appcache_id) 121 IPC_STRUCT_TRAITS_MEMBER(appcache_id)
121 IPC_STRUCT_TRAITS_MEMBER(appcache_manifest_url) 122 IPC_STRUCT_TRAITS_MEMBER(appcache_manifest_url)
122 IPC_STRUCT_TRAITS_MEMBER(load_timing) 123 IPC_STRUCT_TRAITS_MEMBER(load_timing)
123 IPC_STRUCT_TRAITS_MEMBER(devtools_info) 124 IPC_STRUCT_TRAITS_MEMBER(devtools_info)
124 IPC_STRUCT_TRAITS_MEMBER(download_file_path) 125 IPC_STRUCT_TRAITS_MEMBER(download_file_path)
125 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_spdy) 126 IPC_STRUCT_TRAITS_MEMBER(was_fetched_via_spdy)
126 IPC_STRUCT_TRAITS_MEMBER(was_npn_negotiated) 127 IPC_STRUCT_TRAITS_MEMBER(was_npn_negotiated)
127 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available) 128 IPC_STRUCT_TRAITS_MEMBER(was_alternate_protocol_available)
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 404
404 // Sent when the renderer process deletes a resource loader. 405 // Sent when the renderer process deletes a resource loader.
405 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile, 406 IPC_MESSAGE_CONTROL1(ResourceHostMsg_ReleaseDownloadedFile,
406 int /* request_id */) 407 int /* request_id */)
407 408
408 // Sent by the renderer when a resource request changes priority. 409 // Sent by the renderer when a resource request changes priority.
409 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority, 410 IPC_MESSAGE_CONTROL3(ResourceHostMsg_DidChangePriority,
410 int /* request_id */, 411 int /* request_id */,
411 net::RequestPriority, 412 net::RequestPriority,
412 int /* intra_priority_value */) 413 int /* intra_priority_value */)
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/public/common/resource_response.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698