| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 #include <map> | 7 #include <map> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 // for the *first* non-disabled plugin found that is registered for |mime_type|. | 469 // for the *first* non-disabled plugin found that is registered for |mime_type|. |
| 470 IPC_SYNC_MESSAGE_CONTROL1_3( | 470 IPC_SYNC_MESSAGE_CONTROL1_3( |
| 471 ChromeViewHostMsg_IsInternalPluginAvailableForMimeType, | 471 ChromeViewHostMsg_IsInternalPluginAvailableForMimeType, |
| 472 std::string /* mime_type */, | 472 std::string /* mime_type */, |
| 473 bool /* is_available */, | 473 bool /* is_available */, |
| 474 std::vector<base::string16> /* additional_param_names */, | 474 std::vector<base::string16> /* additional_param_names */, |
| 475 std::vector<base::string16> /* additional_param_values */) | 475 std::vector<base::string16> /* additional_param_values */) |
| 476 #endif | 476 #endif |
| 477 | 477 |
| 478 #if defined(ENABLE_PLUGIN_INSTALLATION) | 478 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 479 // Tells the browser to search for a plugin that can handle the given MIME | |
| 480 // type. The result will be sent asynchronously to the routing ID | |
| 481 // |placeholder_id|. | |
| 482 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FindMissingPlugin, | |
| 483 int /* placeholder_id */, | |
| 484 std::string /* mime_type */) | |
| 485 | |
| 486 // Notifies the browser that a missing plugin placeholder has been removed, so | 479 // Notifies the browser that a missing plugin placeholder has been removed, so |
| 487 // the corresponding PluginPlaceholderHost can be deleted. | 480 // the corresponding PluginPlaceholderHost can be deleted. |
| 488 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RemovePluginPlaceholderHost, | 481 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_RemovePluginPlaceholderHost, |
| 489 int /* placeholder_id */) | 482 int /* placeholder_id */) |
| 490 | 483 |
| 491 // Notifies a missing plugin placeholder that a plugin with name |plugin_name| | 484 // Notifies a missing plugin placeholder that a plugin with name |plugin_name| |
| 492 // has been found. | 485 // has been found. |
| 493 IPC_MESSAGE_ROUTED1(ChromeViewMsg_FoundMissingPlugin, | 486 IPC_MESSAGE_ROUTED1(ChromeViewMsg_FoundMissingPlugin, |
| 494 base::string16 /* plugin_name */) | 487 base::string16 /* plugin_name */) |
| 495 | 488 |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 679 | 672 |
| 680 // Tells the browser process whether the web page wants the banner to be shown. | 673 // Tells the browser process whether the web page wants the banner to be shown. |
| 681 // This is a reply from ChromeViewMsg_AppBannerPromptRequest. | 674 // This is a reply from ChromeViewMsg_AppBannerPromptRequest. |
| 682 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_AppBannerPromptReply, | 675 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_AppBannerPromptReply, |
| 683 int /* request_id */, | 676 int /* request_id */, |
| 684 blink::WebAppBannerPromptReply /* reply */) | 677 blink::WebAppBannerPromptReply /* reply */) |
| 685 | 678 |
| 686 // Sent by the renderer to indicate that a fields trial has been activated. | 679 // Sent by the renderer to indicate that a fields trial has been activated. |
| 687 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 680 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
| 688 std::string /* name */) | 681 std::string /* name */) |
| OLD | NEW |