| OLD | NEW |
| 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 // IPC messages for the web manifest manager. | 5 // IPC messages for the web manifest manager. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "content/public/common/manifest.h" | 9 #include "content/public/common/manifest.h" |
| 10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| 11 | 11 |
| 12 #undef IPC_MESSAGE_EXPORT | 12 #undef IPC_MESSAGE_EXPORT |
| 13 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 13 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 14 | 14 |
| 15 #define IPC_MESSAGE_START ManifestManagerMsgStart | 15 #define IPC_MESSAGE_START ManifestManagerMsgStart |
| 16 | 16 |
| 17 IPC_ENUM_TRAITS_MAX_VALUE(content::Manifest::DisplayMode, | 17 IPC_ENUM_TRAITS_MAX_VALUE(content::Manifest::DisplayMode, |
| 18 content::Manifest::DISPLAY_MODE_BROWSER) | 18 content::Manifest::DISPLAY_MODE_BROWSER) |
| 19 | 19 |
| 20 IPC_ENUM_TRAITS_MAX_VALUE( |
| 21 content::Manifest::ChromeRelatedApplicationPlatform, |
| 22 content::Manifest::CHROME_RELATED_APPLICATION_PLATFORM_WEB) |
| 23 |
| 20 IPC_STRUCT_TRAITS_BEGIN(content::Manifest::Icon) | 24 IPC_STRUCT_TRAITS_BEGIN(content::Manifest::Icon) |
| 21 IPC_STRUCT_TRAITS_MEMBER(src) | 25 IPC_STRUCT_TRAITS_MEMBER(src) |
| 22 IPC_STRUCT_TRAITS_MEMBER(type) | 26 IPC_STRUCT_TRAITS_MEMBER(type) |
| 23 IPC_STRUCT_TRAITS_MEMBER(density) | 27 IPC_STRUCT_TRAITS_MEMBER(density) |
| 24 IPC_STRUCT_TRAITS_MEMBER(sizes) | 28 IPC_STRUCT_TRAITS_MEMBER(sizes) |
| 25 IPC_STRUCT_TRAITS_END() | 29 IPC_STRUCT_TRAITS_END() |
| 26 | 30 |
| 31 IPC_STRUCT_TRAITS_BEGIN(content::Manifest::ChromeRelatedApplication) |
| 32 IPC_STRUCT_TRAITS_MEMBER(platform) |
| 33 IPC_STRUCT_TRAITS_MEMBER(id) |
| 34 IPC_STRUCT_TRAITS_END() |
| 35 |
| 27 IPC_STRUCT_TRAITS_BEGIN(content::Manifest) | 36 IPC_STRUCT_TRAITS_BEGIN(content::Manifest) |
| 28 IPC_STRUCT_TRAITS_MEMBER(name) | 37 IPC_STRUCT_TRAITS_MEMBER(name) |
| 29 IPC_STRUCT_TRAITS_MEMBER(short_name) | 38 IPC_STRUCT_TRAITS_MEMBER(short_name) |
| 30 IPC_STRUCT_TRAITS_MEMBER(start_url) | 39 IPC_STRUCT_TRAITS_MEMBER(start_url) |
| 31 IPC_STRUCT_TRAITS_MEMBER(display) | 40 IPC_STRUCT_TRAITS_MEMBER(display) |
| 32 IPC_STRUCT_TRAITS_MEMBER(orientation) | 41 IPC_STRUCT_TRAITS_MEMBER(orientation) |
| 33 IPC_STRUCT_TRAITS_MEMBER(icons) | 42 IPC_STRUCT_TRAITS_MEMBER(icons) |
| 34 IPC_STRUCT_TRAITS_MEMBER(gcm_sender_id) | 43 IPC_STRUCT_TRAITS_MEMBER(gcm_sender_id) |
| 44 IPC_STRUCT_TRAITS_MEMBER(chrome_related_applications) |
| 35 IPC_STRUCT_TRAITS_END() | 45 IPC_STRUCT_TRAITS_END() |
| 36 | 46 |
| 37 // The browser process requests for the manifest linked with the associated | 47 // The browser process requests for the manifest linked with the associated |
| 38 // render frame. The renderer process will respond via a RequestManifestResponse | 48 // render frame. The renderer process will respond via a RequestManifestResponse |
| 39 // IPC message with a Manifest object attached to it and the associated | 49 // IPC message with a Manifest object attached to it and the associated |
| 40 // |request_id| that was initially given. | 50 // |request_id| that was initially given. |
| 41 IPC_MESSAGE_ROUTED1(ManifestManagerMsg_RequestManifest, | 51 IPC_MESSAGE_ROUTED1(ManifestManagerMsg_RequestManifest, |
| 42 int /* request_id */) | 52 int /* request_id */) |
| 43 | 53 |
| 44 // The renderer process' response to a RequestManifest. The |request_id| will | 54 // The renderer process' response to a RequestManifest. The |request_id| will |
| 45 // match the one that was initially received. The |manifest| object will be an | 55 // match the one that was initially received. The |manifest| object will be an |
| 46 // empty manifest in case of any failure. | 56 // empty manifest in case of any failure. |
| 47 IPC_MESSAGE_ROUTED2(ManifestManagerHostMsg_RequestManifestResponse, | 57 IPC_MESSAGE_ROUTED2(ManifestManagerHostMsg_RequestManifestResponse, |
| 48 int, /* request_id */ | 58 int, /* request_id */ |
| 49 content::Manifest /* manifest */) | 59 content::Manifest /* manifest */) |
| OLD | NEW |