OLD | NEW |
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 Loading... |
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 */) |
OLD | NEW |