| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CONTENT_COMMON_APPCACHE_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_APPCACHE_MESSAGES_H_ |
| 7 |
| 5 // Multiply-included message file, hence no include guard. | 8 // Multiply-included message file, hence no include guard. |
| 6 | 9 |
| 7 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| 8 | 11 |
| 9 #include <stdint.h> | 12 #include <stdint.h> |
| 10 | 13 |
| 11 #include "content/common/appcache_interfaces.h" | 14 #include "content/common/appcache_interfaces.h" |
| 12 #include "url/ipc/url_param_traits.h" | 15 #include "url/ipc/url_param_traits.h" |
| 13 | 16 |
| 14 #define IPC_MESSAGE_START AppCacheMsgStart | 17 #define IPC_MESSAGE_START AppCacheMsgStart |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 // Notifies the renderer of an AppCache logging message. | 156 // Notifies the renderer of an AppCache logging message. |
| 154 IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, | 157 IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, |
| 155 int /* host_id */, | 158 int /* host_id */, |
| 156 int /* log_level */, | 159 int /* log_level */, |
| 157 std::string /* message */) | 160 std::string /* message */) |
| 158 | 161 |
| 159 // Notifies the renderer of the fact that AppCache access was blocked. | 162 // Notifies the renderer of the fact that AppCache access was blocked. |
| 160 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, | 163 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, |
| 161 int /* host_id */, | 164 int /* host_id */, |
| 162 GURL /* manifest_url */) | 165 GURL /* manifest_url */) |
| 166 |
| 167 #endif // CONTENT_COMMON_APPCACHE_MESSAGES_H_ |
| OLD | NEW |