| 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 <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateFailure) | 469 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateFailure) |
| 470 | 470 |
| 471 // Notifies a missing plugin placeholder that we have started the component | 471 // Notifies a missing plugin placeholder that we have started the component |
| 472 // download. | 472 // download. |
| 473 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateDownloading) | 473 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateDownloading) |
| 474 | 474 |
| 475 // Notifies a missing plugin placeholder that the user cancelled downloading | 475 // Notifies a missing plugin placeholder that the user cancelled downloading |
| 476 // the plugin. | 476 // the plugin. |
| 477 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) | 477 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) |
| 478 | 478 |
| 479 // Tells the browser to open chrome://plugins in a new tab. We use a separate | |
| 480 // message because renderer processes aren't allowed to directly navigate to | |
| 481 // chrome:// URLs. | |
| 482 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_OpenAboutPlugins) | |
| 483 | |
| 484 // Tells the browser to show the Flash permission bubble in the same tab. | 479 // Tells the browser to show the Flash permission bubble in the same tab. |
| 485 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) | 480 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) |
| 486 | 481 |
| 487 // Tells the browser that there was an error loading a plugin. | 482 // Tells the browser that there was an error loading a plugin. |
| 488 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, | 483 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, |
| 489 base::FilePath /* plugin_path */) | 484 base::FilePath /* plugin_path */) |
| 490 | 485 |
| 491 // Notification that the page has an OpenSearch description document | 486 // Notification that the page has an OpenSearch description document |
| 492 // associated with it. | 487 // associated with it. |
| 493 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD, | 488 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD, |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 // process so that they can be assigned to an Instant renderer. | 583 // process so that they can be assigned to an Instant renderer. |
| 589 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 584 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 590 std::vector<GURL> /* search_urls */, | 585 std::vector<GURL> /* search_urls */, |
| 591 GURL /* new_tab_page_url */) | 586 GURL /* new_tab_page_url */) |
| 592 | 587 |
| 593 #if BUILDFLAG(ENABLE_PLUGINS) | 588 #if BUILDFLAG(ENABLE_PLUGINS) |
| 594 // Sent by the renderer to check if crash reporting is enabled. | 589 // Sent by the renderer to check if crash reporting is enabled. |
| 595 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 590 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 596 bool /* enabled */) | 591 bool /* enabled */) |
| 597 #endif | 592 #endif |
| OLD | NEW |