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

Side by Side Diff: chrome/common/extensions/extension_messages.h

Issue 8760012: Move view_types.h to view_type.h, since that's the standard name for enums. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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
« no previous file with comments | « chrome/common/chrome_view_types.cc ('k') | chrome/renderer/extensions/extension_helper.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 (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 // IPC messages for extensions. 5 // IPC messages for extensions.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/shared_memory.h" 8 #include "base/shared_memory.h"
9 #include "base/values.h" 9 #include "base/values.h"
10 #include "chrome/common/extensions/extension.h" 10 #include "chrome/common/extensions/extension.h"
11 #include "chrome/common/extensions/extension_permission_set.h" 11 #include "chrome/common/extensions/extension_permission_set.h"
12 #include "chrome/common/extensions/url_pattern.h" 12 #include "chrome/common/extensions/url_pattern.h"
13 #include "chrome/common/extensions/url_pattern_set.h" 13 #include "chrome/common/extensions/url_pattern_set.h"
14 #include "chrome/common/web_apps.h" 14 #include "chrome/common/web_apps.h"
15 #include "content/public/common/view_types.h" 15 #include "content/public/common/view_type.h"
16 #include "ipc/ipc_message_macros.h" 16 #include "ipc/ipc_message_macros.h"
17 17
18 #define IPC_MESSAGE_START ExtensionMsgStart 18 #define IPC_MESSAGE_START ExtensionMsgStart
19 19
20 // Parameters structure for ExtensionHostMsg_Request. 20 // Parameters structure for ExtensionHostMsg_Request.
21 IPC_STRUCT_BEGIN(ExtensionHostMsg_Request_Params) 21 IPC_STRUCT_BEGIN(ExtensionHostMsg_Request_Params)
22 // Message name. 22 // Message name.
23 IPC_STRUCT_MEMBER(std::string, name) 23 IPC_STRUCT_MEMBER(std::string, name)
24 24
25 // List of message arguments. 25 // List of message arguments.
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 // Response to the renderer for the above message. 364 // Response to the renderer for the above message.
365 IPC_MESSAGE_ROUTED3(ExtensionMsg_GetAppNotifyChannelResponse, 365 IPC_MESSAGE_ROUTED3(ExtensionMsg_GetAppNotifyChannelResponse,
366 std::string /* channel_id */, 366 std::string /* channel_id */,
367 std::string /* error */, 367 std::string /* error */,
368 int32 /* callback_id */) 368 int32 /* callback_id */)
369 369
370 // Deliver a message sent with ExtensionHostMsg_PostMessage. 370 // Deliver a message sent with ExtensionHostMsg_PostMessage.
371 IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage, 371 IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage,
372 int /* target_port_id */, 372 int /* target_port_id */,
373 std::string /* message */) 373 std::string /* message */)
OLDNEW
« no previous file with comments | « chrome/common/chrome_view_types.cc ('k') | chrome/renderer/extensions/extension_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698