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

Side by Side Diff: content/common/service_worker/service_worker_messages.h

Issue 1746483002: Revert of Pipe response_time from FetchManager to CacheStorage and ServiceWorkerURLRequestJob. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) 79 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse)
80 IPC_STRUCT_TRAITS_MEMBER(url) 80 IPC_STRUCT_TRAITS_MEMBER(url)
81 IPC_STRUCT_TRAITS_MEMBER(status_code) 81 IPC_STRUCT_TRAITS_MEMBER(status_code)
82 IPC_STRUCT_TRAITS_MEMBER(status_text) 82 IPC_STRUCT_TRAITS_MEMBER(status_text)
83 IPC_STRUCT_TRAITS_MEMBER(response_type) 83 IPC_STRUCT_TRAITS_MEMBER(response_type)
84 IPC_STRUCT_TRAITS_MEMBER(headers) 84 IPC_STRUCT_TRAITS_MEMBER(headers)
85 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) 85 IPC_STRUCT_TRAITS_MEMBER(blob_uuid)
86 IPC_STRUCT_TRAITS_MEMBER(blob_size) 86 IPC_STRUCT_TRAITS_MEMBER(blob_size)
87 IPC_STRUCT_TRAITS_MEMBER(stream_url) 87 IPC_STRUCT_TRAITS_MEMBER(stream_url)
88 IPC_STRUCT_TRAITS_MEMBER(error) 88 IPC_STRUCT_TRAITS_MEMBER(error)
89 IPC_STRUCT_TRAITS_MEMBER(response_time)
90 IPC_STRUCT_TRAITS_END() 89 IPC_STRUCT_TRAITS_END()
91 90
92 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) 91 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo)
93 IPC_STRUCT_TRAITS_MEMBER(handle_id) 92 IPC_STRUCT_TRAITS_MEMBER(handle_id)
94 IPC_STRUCT_TRAITS_MEMBER(url) 93 IPC_STRUCT_TRAITS_MEMBER(url)
95 IPC_STRUCT_TRAITS_MEMBER(state) 94 IPC_STRUCT_TRAITS_MEMBER(state)
96 IPC_STRUCT_TRAITS_MEMBER(version_id) 95 IPC_STRUCT_TRAITS_MEMBER(version_id)
97 IPC_STRUCT_TRAITS_END() 96 IPC_STRUCT_TRAITS_END()
98 97
99 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) 98 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo)
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 547
549 // Sent via EmbeddedWorker as a response of NavigateClient. 548 // Sent via EmbeddedWorker as a response of NavigateClient.
550 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, 549 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse,
551 int /* request_id */, 550 int /* request_id */,
552 content::ServiceWorkerClientInfo /* client */) 551 content::ServiceWorkerClientInfo /* client */)
553 552
554 // Sent via EmbeddedWorker as an error response of NavigateClient. 553 // Sent via EmbeddedWorker as an error response of NavigateClient.
555 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, 554 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError,
556 int /* request_id */, 555 int /* request_id */,
557 GURL /* url */) 556 GURL /* url */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698