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

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

Issue 580513002: Add support for gcm_sender_id in Manifest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest_start_url
Patch Set: Created 6 years, 2 months 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
« no previous file with comments | « content/browser/manifest/manifest_manager_host.cc ('k') | content/public/common/manifest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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"
(...skipping 13 matching lines...) Expand all
24 IPC_STRUCT_TRAITS_MEMBER(sizes) 24 IPC_STRUCT_TRAITS_MEMBER(sizes)
25 IPC_STRUCT_TRAITS_END() 25 IPC_STRUCT_TRAITS_END()
26 26
27 IPC_STRUCT_TRAITS_BEGIN(content::Manifest) 27 IPC_STRUCT_TRAITS_BEGIN(content::Manifest)
28 IPC_STRUCT_TRAITS_MEMBER(name) 28 IPC_STRUCT_TRAITS_MEMBER(name)
29 IPC_STRUCT_TRAITS_MEMBER(short_name) 29 IPC_STRUCT_TRAITS_MEMBER(short_name)
30 IPC_STRUCT_TRAITS_MEMBER(start_url) 30 IPC_STRUCT_TRAITS_MEMBER(start_url)
31 IPC_STRUCT_TRAITS_MEMBER(display) 31 IPC_STRUCT_TRAITS_MEMBER(display)
32 IPC_STRUCT_TRAITS_MEMBER(orientation) 32 IPC_STRUCT_TRAITS_MEMBER(orientation)
33 IPC_STRUCT_TRAITS_MEMBER(icons) 33 IPC_STRUCT_TRAITS_MEMBER(icons)
34 IPC_STRUCT_TRAITS_MEMBER(gcm_sender_id)
34 IPC_STRUCT_TRAITS_END() 35 IPC_STRUCT_TRAITS_END()
35 36
36 // The browser process requests for the manifest linked with the associated 37 // The browser process requests for the manifest linked with the associated
37 // render frame. The renderer process will respond via a RequestManifestResponse 38 // render frame. The renderer process will respond via a RequestManifestResponse
38 // IPC message with a Manifest object attached to it and the associated 39 // IPC message with a Manifest object attached to it and the associated
39 // |request_id| that was initially given. 40 // |request_id| that was initially given.
40 IPC_MESSAGE_ROUTED1(ManifestManagerMsg_RequestManifest, 41 IPC_MESSAGE_ROUTED1(ManifestManagerMsg_RequestManifest,
41 int /* request_id */) 42 int /* request_id */)
42 43
43 // The renderer process' response to a RequestManifest. The |request_id| will 44 // The renderer process' response to a RequestManifest. The |request_id| will
44 // match the one that was initially received. The |manifest| object will be an 45 // match the one that was initially received. The |manifest| object will be an
45 // empty manifest in case of any failure. 46 // empty manifest in case of any failure.
46 IPC_MESSAGE_ROUTED2(ManifestManagerHostMsg_RequestManifestResponse, 47 IPC_MESSAGE_ROUTED2(ManifestManagerHostMsg_RequestManifestResponse,
47 int, /* request_id */ 48 int, /* request_id */
48 content::Manifest /* manifest */) 49 content::Manifest /* manifest */)
OLDNEW
« no previous file with comments | « content/browser/manifest/manifest_manager_host.cc ('k') | content/public/common/manifest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698