| 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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 GURL /* origin_url */, | 494 GURL /* origin_url */, |
| 495 GURL /* top origin url */, | 495 GURL /* top origin url */, |
| 496 string16 /* database name */, | 496 string16 /* database name */, |
| 497 bool /* allowed */) | 497 bool /* allowed */) |
| 498 | 498 |
| 499 // Return information about a plugin for the given URL and MIME type. | 499 // Return information about a plugin for the given URL and MIME type. |
| 500 // In contrast to ViewHostMsg_GetPluginInfo in content/, this IPC call knows | 500 // In contrast to ViewHostMsg_GetPluginInfo in content/, this IPC call knows |
| 501 // about specific reasons why a plug-in can't be used, for example because it's | 501 // about specific reasons why a plug-in can't be used, for example because it's |
| 502 // disabled. | 502 // disabled. |
| 503 IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_GetPluginInfo, | 503 IPC_SYNC_MESSAGE_CONTROL4_1(ChromeViewHostMsg_GetPluginInfo, |
| 504 int /* render_view_id */, | 504 int /* render_frame_id */, |
| 505 GURL /* url */, | 505 GURL /* url */, |
| 506 GURL /* top origin url */, | 506 GURL /* top origin url */, |
| 507 std::string /* mime_type */, | 507 std::string /* mime_type */, |
| 508 ChromeViewHostMsg_GetPluginInfo_Output /* output */) | 508 ChromeViewHostMsg_GetPluginInfo_Output /* output */) |
| 509 | 509 |
| 510 // Returns whether any internal plugin supporting |mime_type| is registered | 510 // Returns whether any internal plugin supporting |mime_type| is registered |
| 511 // Does not determine whether the plugin can actually be instantiated | 511 // Does not determine whether the plugin can actually be instantiated |
| 512 // (e.g. whether it is allowed or has all its dependencies). | 512 // (e.g. whether it is allowed or has all its dependencies). |
| 513 // When the returned *|is_registered| is true, |additional_param_names| and | 513 // When the returned *|is_registered| is true, |additional_param_names| and |
| 514 // |additional_param_values| contain the name-value pairs, if any, specified | 514 // |additional_param_values| contain the name-value pairs, if any, specified |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 std::vector<GURL> /* search_urls */, | 775 std::vector<GURL> /* search_urls */, |
| 776 GURL /* new_tab_page_url */) | 776 GURL /* new_tab_page_url */) |
| 777 | 777 |
| 778 // Tells listeners that a detailed message was reported to the console by | 778 // Tells listeners that a detailed message was reported to the console by |
| 779 // WebKit. | 779 // WebKit. |
| 780 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 780 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 781 string16 /* message */, | 781 string16 /* message */, |
| 782 string16 /* source */, | 782 string16 /* source */, |
| 783 extensions::StackTrace /* stack trace */, | 783 extensions::StackTrace /* stack trace */, |
| 784 int32 /* severity level */) | 784 int32 /* severity level */) |
| OLD | NEW |