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 <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
565 bool /* is_apple_mobile_webapp_capable */, | 565 bool /* is_apple_mobile_webapp_capable */, |
566 GURL /* expected_url */) | 566 GURL /* expected_url */) |
567 | 567 |
568 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent, | 568 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DidRetrieveMetaTagContent, |
569 bool /* success */, | 569 bool /* success */, |
570 std::string /* tag_name */, | 570 std::string /* tag_name */, |
571 std::string /* tag_content */, | 571 std::string /* tag_content */, |
572 GURL /* expected_url */) | 572 GURL /* expected_url */) |
573 #endif // defined(OS_ANDROID) | 573 #endif // defined(OS_ANDROID) |
574 | 574 |
575 // This message indicates the error appeared in the frame. | |
576 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_FrameLoadingError, | |
577 int /* error */) | |
578 | |
579 // This message indicates the monitored frame loading had completed. | |
580 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FrameLoadingCompleted) | |
581 | |
582 // Logs events from InstantExtended New Tab Pages. | 575 // Logs events from InstantExtended New Tab Pages. |
583 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, | 576 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent, |
584 int /* page_seq_no */, | 577 int /* page_seq_no */, |
585 NTPLoggingEventType /* event */) | 578 NTPLoggingEventType /* event */) |
586 | 579 |
587 // Logs an impression on one of the Most Visited tile on the InstantExtended | 580 // Logs an impression on one of the Most Visited tile on the InstantExtended |
588 // New Tab Page. | 581 // New Tab Page. |
589 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression, | 582 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression, |
590 int /* page_seq_no */, | 583 int /* page_seq_no */, |
591 int /* position */, | 584 int /* position */, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 // process so that they can be assigned to an Instant renderer. | 645 // process so that they can be assigned to an Instant renderer. |
653 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 646 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
654 std::vector<GURL> /* search_urls */, | 647 std::vector<GURL> /* search_urls */, |
655 GURL /* new_tab_page_url */) | 648 GURL /* new_tab_page_url */) |
656 | 649 |
657 #if defined(ENABLE_PLUGINS) | 650 #if defined(ENABLE_PLUGINS) |
658 // Sent by the renderer to check if crash reporting is enabled. | 651 // Sent by the renderer to check if crash reporting is enabled. |
659 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 652 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
660 bool /* enabled */) | 653 bool /* enabled */) |
661 #endif | 654 #endif |
OLD | NEW |