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

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

Issue 7930002: Rename WebIntentData for backend storage to WebIntentServiceData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 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 | Annotate | Revision Log
OLDNEW
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 // 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 "ipc/ipc_message_macros.h" 7 #include "ipc/ipc_message_macros.h"
8 #include "ipc/ipc_message_utils.h" 8 #include "ipc/ipc_message_utils.h"
9 #include "ipc/param_traits_macros.h" 9 #include "ipc/param_traits_macros.h"
10 #include "webkit/glue/web_intent_data.h" 10 #include "webkit/glue/web_intent_data.h"
(...skipping 28 matching lines...) Expand all
39 IPC_ENUM_TRAITS(IntentsMsg_WebIntentReply_Type::Value) 39 IPC_ENUM_TRAITS(IntentsMsg_WebIntentReply_Type::Value)
40 40
41 IPC_MESSAGE_ROUTED2(IntentsMsg_SetWebIntentData, 41 IPC_MESSAGE_ROUTED2(IntentsMsg_SetWebIntentData,
42 webkit_glue::WebIntentData, 42 webkit_glue::WebIntentData,
43 int /* intent ID */) 43 int /* intent ID */)
44 44
45 IPC_MESSAGE_ROUTED3(IntentsMsg_WebIntentReply, 45 IPC_MESSAGE_ROUTED3(IntentsMsg_WebIntentReply,
46 IntentsMsg_WebIntentReply_Type::Value /* reply type */, 46 IntentsMsg_WebIntentReply_Type::Value /* reply type */,
47 string16 /* payload data */, 47 string16 /* payload data */,
48 int /* intent ID */) 48 int /* intent ID */)
49
50 // Route the startActivity Intents call from a page to the service picker.
51 IPC_MESSAGE_ROUTED2(IntentsHostMsg_WebIntentDispatch,
Greg Billock 2011/09/20 18:20:33 Reminder: Have a look here and changed the signatu
52 webkit_glue::WebIntentData,
53 int /* intent ID */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698