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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 int /* routing id */, | 695 int /* routing id */, |
696 float /* frames per second */) | 696 float /* frames per second */) |
697 | 697 |
698 // Logs events from InstantExtended New Tab Pages. | 698 // Logs events from InstantExtended New Tab Pages. |
699 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, | 699 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, |
700 int /* page_id */, | 700 int /* page_id */, |
701 NTPLoggingEventType /* event */) | 701 NTPLoggingEventType /* event */) |
702 | 702 |
703 // Logs an impression on one of the Most Visited tile on the InstantExtended | 703 // Logs an impression on one of the Most Visited tile on the InstantExtended |
704 // New Tab Page. | 704 // New Tab Page. |
705 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogImpression, | 705 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression, |
706 int /* page_id */, | 706 int /* page_id */, |
707 int /* position */, | 707 int /* position */, |
708 base::string16 /* provider */) | 708 base::string16 /* provider */) |
| 709 |
| 710 // Logs a navigation on one of the Most Visited tile on the InstantExtended |
| 711 // New Tab Page. |
| 712 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation, |
| 713 int /* page_id */, |
| 714 int /* position */, |
| 715 base::string16 /* provider */) |
709 | 716 |
710 // The Instant page asks for Chrome identity check against |identity|. | 717 // The Instant page asks for Chrome identity check against |identity|. |
711 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck, | 718 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck, |
712 int /* page_id */, | 719 int /* page_id */, |
713 base::string16 /* identity */) | 720 base::string16 /* identity */) |
714 | 721 |
715 // Tells InstantExtended to set the omnibox focus state. | 722 // Tells InstantExtended to set the omnibox focus state. |
716 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, | 723 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, |
717 int /* page_id */, | 724 int /* page_id */, |
718 OmniboxFocusState /* state */) | 725 OmniboxFocusState /* state */) |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 std::vector<GURL> /* search_urls */, | 770 std::vector<GURL> /* search_urls */, |
764 GURL /* new_tab_page_url */) | 771 GURL /* new_tab_page_url */) |
765 | 772 |
766 // Tells listeners that a detailed message was reported to the console by | 773 // Tells listeners that a detailed message was reported to the console by |
767 // WebKit. | 774 // WebKit. |
768 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 775 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
769 base::string16 /* message */, | 776 base::string16 /* message */, |
770 base::string16 /* source */, | 777 base::string16 /* source */, |
771 extensions::StackTrace /* stack trace */, | 778 extensions::StackTrace /* stack trace */, |
772 int32 /* severity level */) | 779 int32 /* severity level */) |
OLD | NEW |