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

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

Issue 2516353002: Introduce url_list to the Response scheme of CacheStorage. (Closed)
Patch Set: implicit conversion WebURL <-> GURL and WebVector <- vector Created 4 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
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 IPC_STRUCT_TRAITS_MEMBER(redirect_mode) 77 IPC_STRUCT_TRAITS_MEMBER(redirect_mode)
78 IPC_STRUCT_TRAITS_MEMBER(client_id) 78 IPC_STRUCT_TRAITS_MEMBER(client_id)
79 IPC_STRUCT_TRAITS_MEMBER(is_reload) 79 IPC_STRUCT_TRAITS_MEMBER(is_reload)
80 IPC_STRUCT_TRAITS_MEMBER(fetch_type) 80 IPC_STRUCT_TRAITS_MEMBER(fetch_type)
81 IPC_STRUCT_TRAITS_END() 81 IPC_STRUCT_TRAITS_END()
82 82
83 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult, 83 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerFetchEventResult,
84 content::SERVICE_WORKER_FETCH_EVENT_LAST) 84 content::SERVICE_WORKER_FETCH_EVENT_LAST)
85 85
86 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse) 86 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerResponse)
87 IPC_STRUCT_TRAITS_MEMBER(url) 87 IPC_STRUCT_TRAITS_MEMBER(url_list)
88 IPC_STRUCT_TRAITS_MEMBER(status_code) 88 IPC_STRUCT_TRAITS_MEMBER(status_code)
89 IPC_STRUCT_TRAITS_MEMBER(status_text) 89 IPC_STRUCT_TRAITS_MEMBER(status_text)
90 IPC_STRUCT_TRAITS_MEMBER(response_type) 90 IPC_STRUCT_TRAITS_MEMBER(response_type)
91 IPC_STRUCT_TRAITS_MEMBER(headers) 91 IPC_STRUCT_TRAITS_MEMBER(headers)
92 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) 92 IPC_STRUCT_TRAITS_MEMBER(blob_uuid)
93 IPC_STRUCT_TRAITS_MEMBER(blob_size) 93 IPC_STRUCT_TRAITS_MEMBER(blob_size)
94 IPC_STRUCT_TRAITS_MEMBER(stream_url) 94 IPC_STRUCT_TRAITS_MEMBER(stream_url)
95 IPC_STRUCT_TRAITS_MEMBER(error) 95 IPC_STRUCT_TRAITS_MEMBER(error)
96 IPC_STRUCT_TRAITS_MEMBER(response_time) 96 IPC_STRUCT_TRAITS_MEMBER(response_time)
97 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage) 97 IPC_STRUCT_TRAITS_MEMBER(is_in_cache_storage)
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 594
595 // Sent via EmbeddedWorker as a response of NavigateClient. 595 // Sent via EmbeddedWorker as a response of NavigateClient.
596 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse, 596 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientResponse,
597 int /* request_id */, 597 int /* request_id */,
598 content::ServiceWorkerClientInfo /* client */) 598 content::ServiceWorkerClientInfo /* client */)
599 599
600 // Sent via EmbeddedWorker as an error response of NavigateClient. 600 // Sent via EmbeddedWorker as an error response of NavigateClient.
601 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError, 601 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_NavigateClientError,
602 int /* request_id */, 602 int /* request_id */,
603 GURL /* url */) 603 GURL /* url */)
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/common/service_worker/service_worker_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698