| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // the plugin. | 342 // the plugin. |
| 343 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) | 343 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) |
| 344 | 344 |
| 345 // Tells the browser to show the Flash permission bubble in the same tab. | 345 // Tells the browser to show the Flash permission bubble in the same tab. |
| 346 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) | 346 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) |
| 347 | 347 |
| 348 // Tells the browser that there was an error loading a plugin. | 348 // Tells the browser that there was an error loading a plugin. |
| 349 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, | 349 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, |
| 350 base::FilePath /* plugin_path */) | 350 base::FilePath /* plugin_path */) |
| 351 | 351 |
| 352 // Notification that the page has an OpenSearch description document | |
| 353 // associated with it. | |
| 354 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD, | |
| 355 GURL /* page_url */, | |
| 356 GURL /* osdd_url */) | |
| 357 | |
| 358 // Notifies when a plugin couldn't be loaded because it's outdated. | 352 // Notifies when a plugin couldn't be loaded because it's outdated. |
| 359 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, | 353 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, |
| 360 int /* placeholder ID */, | 354 int /* placeholder ID */, |
| 361 std::string /* plugin group identifier */) | 355 std::string /* plugin group identifier */) |
| 362 | 356 |
| 363 // Notifies when a plugin couldn't be loaded because it requires a component | 357 // Notifies when a plugin couldn't be loaded because it requires a component |
| 364 // update. | 358 // update. |
| 365 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedComponentUpdatedPlugin, | 359 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedComponentUpdatedPlugin, |
| 366 int /* placeholder ID */, | 360 int /* placeholder ID */, |
| 367 std::string /* plugin group identifier */) | 361 std::string /* plugin group identifier */) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 383 // process so that they can be assigned to an Instant renderer. | 377 // process so that they can be assigned to an Instant renderer. |
| 384 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 378 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 385 std::vector<GURL> /* search_urls */, | 379 std::vector<GURL> /* search_urls */, |
| 386 GURL /* new_tab_page_url */) | 380 GURL /* new_tab_page_url */) |
| 387 | 381 |
| 388 #if BUILDFLAG(ENABLE_PLUGINS) | 382 #if BUILDFLAG(ENABLE_PLUGINS) |
| 389 // Sent by the renderer to check if crash reporting is enabled. | 383 // Sent by the renderer to check if crash reporting is enabled. |
| 390 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 384 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 391 bool /* enabled */) | 385 bool /* enabled */) |
| 392 #endif | 386 #endif |
| OLD | NEW |