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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
412 // disabled. | 412 // disabled. |
413 IPC_SYNC_MESSAGE_CONTROL4_3(ChromeViewHostMsg_GetPluginInfo, | 413 IPC_SYNC_MESSAGE_CONTROL4_3(ChromeViewHostMsg_GetPluginInfo, |
414 int /* render_view_id */, | 414 int /* render_view_id */, |
415 GURL /* url */, | 415 GURL /* url */, |
416 GURL /* top origin url */, | 416 GURL /* top origin url */, |
417 std::string /* mime_type */, | 417 std::string /* mime_type */, |
418 ChromeViewHostMsg_GetPluginInfo_Status /* status */, | 418 ChromeViewHostMsg_GetPluginInfo_Status /* status */, |
419 webkit::WebPluginInfo /* plugin */, | 419 webkit::WebPluginInfo /* plugin */, |
420 std::string /* actual_mime_type */) | 420 std::string /* actual_mime_type */) |
421 | 421 |
| 422 // Sent by the renderer to check restrictions on local data handled by the |
| 423 // plug-in. |
| 424 IPC_SYNC_MESSAGE_CONTROL1_2(ChromeViewHostMsg_GetPluginLocalDataRestrictions, |
| 425 GURL /* url */, |
| 426 bool /* block_access */, |
| 427 bool /* in_memory */) |
| 428 |
422 #if defined(ENABLE_PLUGIN_INSTALLATION) | 429 #if defined(ENABLE_PLUGIN_INSTALLATION) |
423 // Tells the browser to search for a plug-in that can handle the given MIME | 430 // Tells the browser to search for a plug-in that can handle the given MIME |
424 // type. The result will be sent asynchronously to the routing ID | 431 // type. The result will be sent asynchronously to the routing ID |
425 // |placeholder_id|. | 432 // |placeholder_id|. |
426 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FindMissingPlugin, | 433 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FindMissingPlugin, |
427 int /* placeholder_id */, | 434 int /* placeholder_id */, |
428 std::string /* mime_type */) | 435 std::string /* mime_type */) |
429 | 436 |
430 // Notifies the browser that a missing plug-in placeholder has been removed, so | 437 // Notifies the browser that a missing plug-in placeholder has been removed, so |
431 // the corresponding PluginPlaceholderHost can be deleted. | 438 // the corresponding PluginPlaceholderHost can be deleted. |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 // previous SetCookie message to be processed. | 638 // previous SetCookie message to be processed. |
632 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 639 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
633 GURL /* url */, | 640 GURL /* url */, |
634 GURL /* first_party_for_cookies */, | 641 GURL /* first_party_for_cookies */, |
635 std::string /* cookies */) | 642 std::string /* cookies */) |
636 | 643 |
637 // Provide the browser process with current renderer framerate. | 644 // Provide the browser process with current renderer framerate. |
638 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 645 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
639 int /* routing id */, | 646 int /* routing id */, |
640 float /* frames per second */) | 647 float /* frames per second */) |
OLD | NEW |