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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 | 532 |
533 // Tells InstantExtended to undo all most visited item deletions. | 533 // Tells InstantExtended to undo all most visited item deletions. |
534 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions, | 534 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions, |
535 int /* page_seq_no */) | 535 int /* page_seq_no */) |
536 | 536 |
537 // Tells InstantExtended to undo one most visited item deletion. | 537 // Tells InstantExtended to undo one most visited item deletion. |
538 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 538 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
539 int /* page_seq_no */, | 539 int /* page_seq_no */, |
540 GURL /* url */) | 540 GURL /* url */) |
541 | 541 |
542 // Tells InstantExtended whether the page supports voice search. | |
543 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | |
544 int /* page_seq_no */, | |
545 bool /* supported */) | |
546 | |
547 // Tells the renderer a list of URLs which should be bounced back to the browser | 542 // Tells the renderer a list of URLs which should be bounced back to the browser |
548 // process so that they can be assigned to an Instant renderer. | 543 // process so that they can be assigned to an Instant renderer. |
549 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 544 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
550 std::vector<GURL> /* search_urls */, | 545 std::vector<GURL> /* search_urls */, |
551 GURL /* new_tab_page_url */) | 546 GURL /* new_tab_page_url */) |
552 | 547 |
553 #if defined(ENABLE_PLUGINS) | 548 #if defined(ENABLE_PLUGINS) |
554 // Sent by the renderer to check if crash reporting is enabled. | 549 // Sent by the renderer to check if crash reporting is enabled. |
555 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 550 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
556 bool /* enabled */) | 551 bool /* enabled */) |
(...skipping 16 matching lines...) Expand all Loading... |
573 | 568 |
574 // Record a sample string to a Rappor metric. | 569 // Record a sample string to a Rappor metric. |
575 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 570 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
576 std::string /* metric */, | 571 std::string /* metric */, |
577 std::string /* sample */) | 572 std::string /* sample */) |
578 | 573 |
579 // Record a domain and registry of a url to a Rappor metric. | 574 // Record a domain and registry of a url to a Rappor metric. |
580 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 575 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
581 std::string /* metric */, | 576 std::string /* metric */, |
582 GURL /* sample url */) | 577 GURL /* sample url */) |
OLD | NEW |