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

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

Issue 941683002: Removing prefixMatch attribute of CacheQueryOptions- Chromium Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | content/common/service_worker/service_worker_types.h » ('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 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 <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 IPC_STRUCT_TRAITS_MEMBER(headers) 63 IPC_STRUCT_TRAITS_MEMBER(headers)
64 IPC_STRUCT_TRAITS_MEMBER(blob_uuid) 64 IPC_STRUCT_TRAITS_MEMBER(blob_uuid)
65 IPC_STRUCT_TRAITS_MEMBER(blob_size) 65 IPC_STRUCT_TRAITS_MEMBER(blob_size)
66 IPC_STRUCT_TRAITS_MEMBER(stream_url) 66 IPC_STRUCT_TRAITS_MEMBER(stream_url)
67 IPC_STRUCT_TRAITS_END() 67 IPC_STRUCT_TRAITS_END()
68 68
69 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerCacheQueryParams) 69 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerCacheQueryParams)
70 IPC_STRUCT_TRAITS_MEMBER(ignore_search) 70 IPC_STRUCT_TRAITS_MEMBER(ignore_search)
71 IPC_STRUCT_TRAITS_MEMBER(ignore_method) 71 IPC_STRUCT_TRAITS_MEMBER(ignore_method)
72 IPC_STRUCT_TRAITS_MEMBER(ignore_vary) 72 IPC_STRUCT_TRAITS_MEMBER(ignore_vary)
73 IPC_STRUCT_TRAITS_MEMBER(prefix_match)
74 IPC_STRUCT_TRAITS_MEMBER(cache_name) 73 IPC_STRUCT_TRAITS_MEMBER(cache_name)
75 IPC_STRUCT_TRAITS_END() 74 IPC_STRUCT_TRAITS_END()
76 75
77 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerCacheOperationType, 76 IPC_ENUM_TRAITS_MAX_VALUE(content::ServiceWorkerCacheOperationType,
78 content::SERVICE_WORKER_CACHE_OPERATION_TYPE_LAST) 77 content::SERVICE_WORKER_CACHE_OPERATION_TYPE_LAST)
79 78
80 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerBatchOperation) 79 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerBatchOperation)
81 IPC_STRUCT_TRAITS_MEMBER(operation_type) 80 IPC_STRUCT_TRAITS_MEMBER(operation_type)
82 IPC_STRUCT_TRAITS_MEMBER(request) 81 IPC_STRUCT_TRAITS_MEMBER(request)
83 IPC_STRUCT_TRAITS_MEMBER(response) 82 IPC_STRUCT_TRAITS_MEMBER(response)
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 blink::WebServiceWorkerCacheError) 497 blink::WebServiceWorkerCacheError)
499 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, 498 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError,
500 int /* request_id */, 499 int /* request_id */,
501 blink::WebServiceWorkerCacheError) 500 blink::WebServiceWorkerCacheError)
502 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, 501 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError,
503 int /* request_id */, 502 int /* request_id */,
504 blink::WebServiceWorkerCacheError) 503 blink::WebServiceWorkerCacheError)
505 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, 504 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError,
506 int /* request_id */, 505 int /* request_id */,
507 blink::WebServiceWorkerCacheError) 506 blink::WebServiceWorkerCacheError)
OLDNEW
« no previous file with comments | « no previous file | content/common/service_worker/service_worker_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698