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

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

Issue 11091050: InstantExtended: Add js api for custom logo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, 629 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions,
630 int /* page_id */, 630 int /* page_id */,
631 std::vector<InstantSuggestion> /* suggestions */) 631 std::vector<InstantSuggestion> /* suggestions */)
632 632
633 // Sent by the Instant preview indicating whether the page supports the Instant 633 // Sent by the Instant preview indicating whether the page supports the Instant
634 // API or not (http://dev.chromium.org/searchbox). 634 // API or not (http://dev.chromium.org/searchbox).
635 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, 635 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined,
636 int /* page_id */, 636 int /* page_id */,
637 bool /* result */) 637 bool /* result */)
638 638
639 // Sent by the Instant preview to indicate that a search provider wants to
640 // display a custom logo on the NTP.
641 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetHasCustomLogo,
642 int /* page_id */,
643 bool /* has_logo */);
644
639 // Sent by the Instant preview asking to resize itself to the given height. 645 // Sent by the Instant preview asking to resize itself to the given height.
640 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetInstantPreviewHeight, 646 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetInstantPreviewHeight,
641 int /* page_id */, 647 int /* page_id */,
642 int /* height */, 648 int /* height */,
643 InstantSizeUnits /* units */) 649 InstantSizeUnits /* units */)
644 650
645 // The currently displayed PDF has an unsupported feature. 651 // The currently displayed PDF has an unsupported feature.
646 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) 652 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
647 653
648 // This message indicates the error appeared in the frame. 654 // This message indicates the error appeared in the frame.
(...skipping 16 matching lines...) Expand all
665 // previous SetCookie message to be processed. 671 // previous SetCookie message to be processed.
666 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 672 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
667 GURL /* url */, 673 GURL /* url */,
668 GURL /* first_party_for_cookies */, 674 GURL /* first_party_for_cookies */,
669 std::string /* cookies */) 675 std::string /* cookies */)
670 676
671 // Provide the browser process with current renderer framerate. 677 // Provide the browser process with current renderer framerate.
672 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 678 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
673 int /* routing id */, 679 int /* routing id */,
674 float /* frames per second */) 680 float /* frames per second */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698