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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 | 417 |
418 // Notifies a missing plugin placeholder that the user cancelled downloading | 418 // Notifies a missing plugin placeholder that the user cancelled downloading |
419 // the plugin. | 419 // the plugin. |
420 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) | 420 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CancelledDownloadingPlugin) |
421 | 421 |
422 // Tells the browser to open chrome://plugins in a new tab. We use a separate | 422 // Tells the browser to open chrome://plugins in a new tab. We use a separate |
423 // message because renderer processes aren't allowed to directly navigate to | 423 // message because renderer processes aren't allowed to directly navigate to |
424 // chrome:// URLs. | 424 // chrome:// URLs. |
425 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_OpenAboutPlugins) | 425 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_OpenAboutPlugins) |
426 | 426 |
| 427 // Tells the browser to show the Flash permission bubble in the same tab. |
| 428 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) |
| 429 |
427 // Tells the browser that there was an error loading a plugin. | 430 // Tells the browser that there was an error loading a plugin. |
428 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, | 431 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, |
429 base::FilePath /* plugin_path */) | 432 base::FilePath /* plugin_path */) |
430 | 433 |
431 // Asks the renderer whether an app banner should be shown. It will reply with | 434 // Asks the renderer whether an app banner should be shown. It will reply with |
432 // ChromeViewHostMsg_AppBannerPromptReply. | 435 // ChromeViewHostMsg_AppBannerPromptReply. |
433 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerPromptRequest, | 436 IPC_MESSAGE_ROUTED2(ChromeViewMsg_AppBannerPromptRequest, |
434 int /* request_id */, | 437 int /* request_id */, |
435 std::string /* platform */) | 438 std::string /* platform */) |
436 | 439 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
564 | 567 |
565 // Record a sample string to a Rappor metric. | 568 // Record a sample string to a Rappor metric. |
566 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 569 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
567 std::string /* metric */, | 570 std::string /* metric */, |
568 std::string /* sample */) | 571 std::string /* sample */) |
569 | 572 |
570 // Record a domain and registry of a url to a Rappor metric. | 573 // Record a domain and registry of a url to a Rappor metric. |
571 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
572 std::string /* metric */, | 575 std::string /* metric */, |
573 GURL /* sample url */) | 576 GURL /* sample url */) |
OLD | NEW |