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