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