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 // 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" |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_InlineWebstoreInstall, | 318 IPC_MESSAGE_ROUTED3(ExtensionHostMsg_InlineWebstoreInstall, |
319 int32 /* install id */, | 319 int32 /* install id */, |
320 std::string /* Web Store item ID */, | 320 std::string /* Web Store item ID */, |
321 GURL /* requestor URL */) | 321 GURL /* requestor URL */) |
322 | 322 |
323 // Send to renderer once the installation mentioned above is complete. | 323 // Send to renderer once the installation mentioned above is complete. |
324 IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse, | 324 IPC_MESSAGE_ROUTED3(ExtensionMsg_InlineWebstoreInstallResponse, |
325 int32 /* install id */, | 325 int32 /* install id */, |
326 bool /* whether the install was successful */, | 326 bool /* whether the install was successful */, |
327 std::string /* error */) | 327 std::string /* error */) |
| 328 |
| 329 // Deliver a message sent with ExtensionHostMsg_PostMessage. |
| 330 IPC_MESSAGE_ROUTED2(ExtensionMsg_DeliverMessage, |
| 331 int /* target_port_id */, |
| 332 std::string /* message */) |
OLD | NEW |