| 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 // 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 std::string /* mime_type */) | 428 std::string /* mime_type */) |
| 429 | 429 |
| 430 // Notifies a missing plug-in placeholder that a plug-in with name |plugin_name| | 430 // Notifies a missing plug-in placeholder that a plug-in with name |plugin_name| |
| 431 // has been found. | 431 // has been found. |
| 432 IPC_MESSAGE_ROUTED1(ChromeViewMsg_FoundMissingPlugin, | 432 IPC_MESSAGE_ROUTED1(ChromeViewMsg_FoundMissingPlugin, |
| 433 string16 /* plugin_name */) | 433 string16 /* plugin_name */) |
| 434 | 434 |
| 435 // Notifies a missing plug-in placeholder that no plug-in has been found. | 435 // Notifies a missing plug-in placeholder that no plug-in has been found. |
| 436 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DidNotFindMissingPlugin) | 436 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DidNotFindMissingPlugin) |
| 437 | 437 |
| 438 // Notifies a missing plug-in placeholder that we have started downloading |
| 439 // the plug-in. |
| 440 IPC_MESSAGE_ROUTED0(ChromeViewMsg_StartedDownloadingPlugin) |
| 441 |
| 442 // Notifies a missing plug-in placeholder that we have finished downloading |
| 443 // the plug-in. |
| 444 IPC_MESSAGE_ROUTED0(ChromeViewMsg_FinishedDownloadingPlugin) |
| 445 |
| 438 // Specifies the URL as the first parameter (a wstring) and thumbnail as | 446 // Specifies the URL as the first parameter (a wstring) and thumbnail as |
| 439 // binary data as the second parameter. | 447 // binary data as the second parameter. |
| 440 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_Thumbnail, | 448 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_Thumbnail, |
| 441 GURL /* url */, | 449 GURL /* url */, |
| 442 ThumbnailScore /* score */, | 450 ThumbnailScore /* score */, |
| 443 SkBitmap /* bitmap */) | 451 SkBitmap /* bitmap */) |
| 444 | 452 |
| 445 // Send a snapshot of the tab contents to the render host. | 453 // Send a snapshot of the tab contents to the render host. |
| 446 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_Snapshot, | 454 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_Snapshot, |
| 447 SkBitmap /* bitmap */) | 455 SkBitmap /* bitmap */) |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 // previous SetCookie message to be processed. | 607 // previous SetCookie message to be processed. |
| 600 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 608 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 601 GURL /* url */, | 609 GURL /* url */, |
| 602 GURL /* first_party_for_cookies */, | 610 GURL /* first_party_for_cookies */, |
| 603 std::string /* cookies */) | 611 std::string /* cookies */) |
| 604 | 612 |
| 605 // Provide the browser process with current renderer framerate. | 613 // Provide the browser process with current renderer framerate. |
| 606 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 614 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 607 int /* routing id */, | 615 int /* routing id */, |
| 608 float /* frames per second */) | 616 float /* frames per second */) |
| OLD | NEW |