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 <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 // Notifies a missing plug-in placeholder that no plug-in has been found. | 439 // Notifies a missing plug-in placeholder that no plug-in has been found. |
440 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DidNotFindMissingPlugin) | 440 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DidNotFindMissingPlugin) |
441 | 441 |
442 // Notifies a missing plug-in placeholder that we have started downloading | 442 // Notifies a missing plug-in placeholder that we have started downloading |
443 // the plug-in. | 443 // the plug-in. |
444 IPC_MESSAGE_ROUTED0(ChromeViewMsg_StartedDownloadingPlugin) | 444 IPC_MESSAGE_ROUTED0(ChromeViewMsg_StartedDownloadingPlugin) |
445 | 445 |
446 // Notifies a missing plug-in placeholder that we have finished downloading | 446 // Notifies a missing plug-in placeholder that we have finished downloading |
447 // the plug-in. | 447 // the plug-in. |
448 IPC_MESSAGE_ROUTED0(ChromeViewMsg_FinishedDownloadingPlugin) | 448 IPC_MESSAGE_ROUTED0(ChromeViewMsg_FinishedDownloadingPlugin) |
449 #endif // defined(ENABLE_PLUGIN_INSTALLATION) | |
450 | 449 |
451 // Notifies a missing plug-in placeholder that there was an error downloading | 450 // Notifies a missing plug-in placeholder that there was an error downloading |
452 // the plug-in. | 451 // the plug-in. |
453 IPC_MESSAGE_ROUTED1(ChromeViewMsg_ErrorDownloadingPlugin, | 452 IPC_MESSAGE_ROUTED1(ChromeViewMsg_ErrorDownloadingPlugin, |
454 std::string /* message */) | 453 std::string /* message */) |
| 454 #endif // defined(ENABLE_PLUGIN_INSTALLATION) |
| 455 |
| 456 // Tells the browser to open chrome://plugins in a new tab. We use a separate |
| 457 // message because renderer processes aren't allowed to directly navigate to |
| 458 // chrome:// URLs. |
| 459 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_OpenAboutPlugins) |
455 | 460 |
456 // Specifies the URL as the first parameter (a wstring) and thumbnail as | 461 // Specifies the URL as the first parameter (a wstring) and thumbnail as |
457 // binary data as the second parameter. | 462 // binary data as the second parameter. |
458 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_Thumbnail, | 463 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_Thumbnail, |
459 GURL /* url */, | 464 GURL /* url */, |
460 ThumbnailScore /* score */, | 465 ThumbnailScore /* score */, |
461 SkBitmap /* bitmap */) | 466 SkBitmap /* bitmap */) |
462 | 467 |
463 // Send a snapshot of the tab contents to the render host. | 468 // Send a snapshot of the tab contents to the render host. |
464 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_Snapshot, | 469 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_Snapshot, |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
617 // previous SetCookie message to be processed. | 622 // previous SetCookie message to be processed. |
618 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 623 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
619 GURL /* url */, | 624 GURL /* url */, |
620 GURL /* first_party_for_cookies */, | 625 GURL /* first_party_for_cookies */, |
621 std::string /* cookies */) | 626 std::string /* cookies */) |
622 | 627 |
623 // Provide the browser process with current renderer framerate. | 628 // Provide the browser process with current renderer framerate. |
624 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 629 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
625 int /* routing id */, | 630 int /* routing id */, |
626 float /* frames per second */) | 631 float /* frames per second */) |
OLD | NEW |