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

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

Issue 70533005: More scaffolding, add class ServiceWorkerProviderHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "base/strings/string16.h" 7 #include "base/strings/string16.h"
8 #include "ipc/ipc_message_macros.h" 8 #include "ipc/ipc_message_macros.h"
9 #include "ipc/ipc_param_traits.h" 9 #include "ipc/ipc_param_traits.h"
10 #include "third_party/WebKit/public/platform/WebServiceWorkerError.h" 10 #include "third_party/WebKit/public/platform/WebServiceWorkerError.h"
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 int32 /* thread_id */, 43 int32 /* thread_id */,
44 int32 /* request_id */) 44 int32 /* request_id */)
45 45
46 // Sent when any kind of registration error occurs during a 46 // Sent when any kind of registration error occurs during a
47 // RegisterServiceWorker / UnregisterServiceWorker handler above. 47 // RegisterServiceWorker / UnregisterServiceWorker handler above.
48 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_ServiceWorkerRegistrationError, 48 IPC_MESSAGE_CONTROL4(ServiceWorkerMsg_ServiceWorkerRegistrationError,
49 int32 /* thread_id */, 49 int32 /* thread_id */,
50 int32 /* request_id */, 50 int32 /* request_id */,
51 blink::WebServiceWorkerError::ErrorType /* code */, 51 blink::WebServiceWorkerError::ErrorType /* code */,
52 string16 /* message */) 52 string16 /* message */)
53
54 // Informs the browser of a new ServiceWorkerProvider in the child process,
55 // |provider_id| is unique within its child process.
56 IPC_MESSAGE_CONTROL1(ServiceWorkerHostMsg_ProviderCreated,
57 int /* provider_id */)
58
59 // Informs the browser of a ServiceWorkerProvider being destroyed.
60 IPC_MESSAGE_CONTROL1(ServiceWorkerHostMsg_ProviderDestroyed,
61 int /* provider_id */)
OLDNEW
« no previous file with comments | « content/child/service_worker/web_service_worker_provider_impl.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698