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

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

Issue 669303003: ServiceWorker: Make a way to retrieve a service worker version id (Chromium) (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 6 years, 1 month 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 <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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 IPC_STRUCT_TRAITS_MEMBER(request) 76 IPC_STRUCT_TRAITS_MEMBER(request)
77 IPC_STRUCT_TRAITS_MEMBER(response) 77 IPC_STRUCT_TRAITS_MEMBER(response)
78 IPC_STRUCT_TRAITS_MEMBER(match_params) 78 IPC_STRUCT_TRAITS_MEMBER(match_params)
79 IPC_STRUCT_TRAITS_END() 79 IPC_STRUCT_TRAITS_END()
80 80
81 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo) 81 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerObjectInfo)
82 IPC_STRUCT_TRAITS_MEMBER(handle_id) 82 IPC_STRUCT_TRAITS_MEMBER(handle_id)
83 IPC_STRUCT_TRAITS_MEMBER(scope) 83 IPC_STRUCT_TRAITS_MEMBER(scope)
84 IPC_STRUCT_TRAITS_MEMBER(url) 84 IPC_STRUCT_TRAITS_MEMBER(url)
85 IPC_STRUCT_TRAITS_MEMBER(state) 85 IPC_STRUCT_TRAITS_MEMBER(state)
86 IPC_STRUCT_TRAITS_MEMBER(version_id)
86 IPC_STRUCT_TRAITS_END() 87 IPC_STRUCT_TRAITS_END()
87 88
88 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo) 89 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerRegistrationObjectInfo)
89 IPC_STRUCT_TRAITS_MEMBER(handle_id) 90 IPC_STRUCT_TRAITS_MEMBER(handle_id)
90 IPC_STRUCT_TRAITS_MEMBER(scope) 91 IPC_STRUCT_TRAITS_MEMBER(scope)
91 IPC_STRUCT_TRAITS_MEMBER(registration_id) 92 IPC_STRUCT_TRAITS_MEMBER(registration_id)
92 IPC_STRUCT_TRAITS_END() 93 IPC_STRUCT_TRAITS_END()
93 94
94 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes) 95 IPC_STRUCT_TRAITS_BEGIN(content::ServiceWorkerVersionAttributes)
95 IPC_STRUCT_TRAITS_MEMBER(installing) 96 IPC_STRUCT_TRAITS_MEMBER(installing)
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 blink::WebServiceWorkerCacheError) 404 blink::WebServiceWorkerCacheError)
404 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError, 405 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheMatchAllError,
405 int /* request_id */, 406 int /* request_id */,
406 blink::WebServiceWorkerCacheError) 407 blink::WebServiceWorkerCacheError)
407 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError, 408 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheKeysError,
408 int /* request_id */, 409 int /* request_id */,
409 blink::WebServiceWorkerCacheError) 410 blink::WebServiceWorkerCacheError)
410 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError, 411 IPC_MESSAGE_CONTROL2(ServiceWorkerMsg_CacheBatchError,
411 int /* request_id */, 412 int /* request_id */,
412 blink::WebServiceWorkerCacheError) 413 blink::WebServiceWorkerCacheError)
OLDNEW
« no previous file with comments | « content/child/service_worker/service_worker_handle_reference.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