| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 std::string /* prompt */, | 685 std::string /* prompt */, |
| 686 std::string /* actual_value */) | 686 std::string /* actual_value */) |
| 687 | 687 |
| 688 // This message indicates the error appeared in the frame. | 688 // This message indicates the error appeared in the frame. |
| 689 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, | 689 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, |
| 690 int /* error */) | 690 int /* error */) |
| 691 | 691 |
| 692 // This message indicates the monitored frame loading had completed. | 692 // This message indicates the monitored frame loading had completed. |
| 693 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) | 693 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) |
| 694 | 694 |
| 695 // The following messages are used to set and get cookies for ChromeFrame | |
| 696 // processes. | |
| 697 // Used to set a cookie. The cookie is set asynchronously, but will be | |
| 698 // available to a subsequent ChromeViewHostMsg_GetCookies request. | |
| 699 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetCookie, | |
| 700 GURL /* url */, | |
| 701 GURL /* first_party_for_cookies */, | |
| 702 std::string /* cookie */) | |
| 703 | |
| 704 // Used to get cookies for the given URL. This may block waiting for a | |
| 705 // previous SetCookie message to be processed. | |
| 706 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | |
| 707 GURL /* url */, | |
| 708 GURL /* first_party_for_cookies */, | |
| 709 std::string /* cookies */) | |
| 710 | |
| 711 // Provide the browser process with current renderer framerate. | 695 // Provide the browser process with current renderer framerate. |
| 712 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 696 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 713 int /* routing id */, | 697 int /* routing id */, |
| 714 float /* frames per second */) | 698 float /* frames per second */) |
| 715 | 699 |
| 716 // Logs events from InstantExtended New Tab Pages. | 700 // Logs events from InstantExtended New Tab Pages. |
| 717 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, | 701 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, |
| 718 int /* page_id */, | 702 int /* page_id */, |
| 719 NTPLoggingEventType /* event */) | 703 NTPLoggingEventType /* event */) |
| 720 | 704 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 std::vector<GURL> /* search_urls */, | 765 std::vector<GURL> /* search_urls */, |
| 782 GURL /* new_tab_page_url */) | 766 GURL /* new_tab_page_url */) |
| 783 | 767 |
| 784 // Tells listeners that a detailed message was reported to the console by | 768 // Tells listeners that a detailed message was reported to the console by |
| 785 // WebKit. | 769 // WebKit. |
| 786 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 770 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 787 base::string16 /* message */, | 771 base::string16 /* message */, |
| 788 base::string16 /* source */, | 772 base::string16 /* source */, |
| 789 extensions::StackTrace /* stack trace */, | 773 extensions::StackTrace /* stack trace */, |
| 790 int32 /* severity level */) | 774 int32 /* severity level */) |
| OLD | NEW |