| 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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 // See http://dev.chromium.org/embeddedsearch | 524 // See http://dev.chromium.org/embeddedsearch |
| 525 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, | 525 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |
| 526 int /* page_seq_no */, | 526 int /* page_seq_no */, |
| 527 bool /* result */) | 527 bool /* result */) |
| 528 | 528 |
| 529 // Tells InstantExtended to delete a most visited item. | 529 // Tells InstantExtended to delete a most visited item. |
| 530 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 530 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
| 531 int /* page_seq_no */, | 531 int /* page_seq_no */, |
| 532 GURL /* url */) | 532 GURL /* url */) |
| 533 | 533 |
| 534 // Tells InstantExtended to navigate the active tab to a possibly privileged | |
| 535 // URL. | |
| 536 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SearchBoxNavigate, | |
| 537 int /* page_seq_no */, | |
| 538 GURL /* destination */, | |
| 539 WindowOpenDisposition /* disposition */) | |
| 540 | |
| 541 // Tells InstantExtended to undo all most visited item deletions. | 534 // Tells InstantExtended to undo all most visited item deletions. |
| 542 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions, | 535 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions, |
| 543 int /* page_seq_no */) | 536 int /* page_seq_no */) |
| 544 | 537 |
| 545 // Tells InstantExtended to undo one most visited item deletion. | 538 // Tells InstantExtended to undo one most visited item deletion. |
| 546 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 539 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 547 int /* page_seq_no */, | 540 int /* page_seq_no */, |
| 548 GURL /* url */) | 541 GURL /* url */) |
| 549 | 542 |
| 550 // Tells the renderer a list of URLs which should be bounced back to the browser | 543 // Tells the renderer a list of URLs which should be bounced back to the browser |
| (...skipping 25 matching lines...) Expand all Loading... |
| 576 | 569 |
| 577 // Record a sample string to a Rappor metric. | 570 // Record a sample string to a Rappor metric. |
| 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 571 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 579 std::string /* metric */, | 572 std::string /* metric */, |
| 580 std::string /* sample */) | 573 std::string /* sample */) |
| 581 | 574 |
| 582 // Record a domain and registry of a url to a Rappor metric. | 575 // Record a domain and registry of a url to a Rappor metric. |
| 583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 584 std::string /* metric */, | 577 std::string /* metric */, |
| 585 GURL /* sample url */) | 578 GURL /* sample url */) |
| OLD | NEW |