Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(424)

Side by Side Diff: chrome/common/render_messages.h

Issue 23455047: InstantExtended: Send search URLs to renderers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More browsertest fixes Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/search_urls.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 // Tells InstantExtended to undo one most visited item deletion. 753 // Tells InstantExtended to undo one most visited item deletion.
754 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, 754 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion,
755 int /* page_id */, 755 int /* page_id */,
756 GURL /* url */) 756 GURL /* url */)
757 757
758 // Tells InstantExtended whether the page supports voice search. 758 // Tells InstantExtended whether the page supports voice search.
759 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, 759 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported,
760 int /* page_id */, 760 int /* page_id */,
761 bool /* supported */) 761 bool /* supported */)
762 762
763 // Tells the renderer a list of URLs which should be bounced back to the browser
764 // process so that they can be assigned to an Instant renderer.
765 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs,
766 std::vector<GURL> /* search_urls */,
767 GURL /* new_tab_page_url */)
768
763 // Tells listeners that a detailed message was reported to the console by 769 // Tells listeners that a detailed message was reported to the console by
764 // WebKit. 770 // WebKit.
765 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, 771 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded,
766 string16 /* message */, 772 string16 /* message */,
767 string16 /* source */, 773 string16 /* source */,
768 extensions::StackTrace /* stack trace */, 774 extensions::StackTrace /* stack trace */,
769 int32 /* severity level */) 775 int32 /* severity level */)
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/common/search_urls.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698