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

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

Issue 11369137: Implement {Start,Stop}CapturingKeyStrokes for Instant. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix which active tab we use. Created 8 years, 1 month 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
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 607 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions, 618 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetSuggestions,
619 int /* page_id */, 619 int /* page_id */,
620 std::vector<InstantSuggestion> /* suggestions */) 620 std::vector<InstantSuggestion> /* suggestions */)
621 621
622 // Sent by the Instant preview indicating whether the page supports the Instant 622 // Sent by the Instant preview indicating whether the page supports the Instant
623 // API or not (http://dev.chromium.org/searchbox). 623 // API or not (http://dev.chromium.org/searchbox).
624 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, 624 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined,
625 int /* page_id */, 625 int /* page_id */,
626 bool /* result */) 626 bool /* result */)
627 627
628 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_OnWebSearchBoxBlur,
629 int /* page_id */)
630
631 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_OnWebSearchBoxFocus,
632 int /* page_id */)
633
628 // Sent by the Instant preview asking to show itself with the given height. 634 // Sent by the Instant preview asking to show itself with the given height.
629 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview, 635 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_ShowInstantPreview,
630 int /* page_id */, 636 int /* page_id */,
631 InstantShownReason /* reason */, 637 InstantShownReason /* reason */,
632 int /* height */, 638 int /* height */,
633 InstantSizeUnits /* units */) 639 InstantSizeUnits /* units */)
634 640
635 // The currently displayed PDF has an unsupported feature. 641 // The currently displayed PDF has an unsupported feature.
636 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature) 642 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
637 643
(...skipping 17 matching lines...) Expand all
655 // previous SetCookie message to be processed. 661 // previous SetCookie message to be processed.
656 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 662 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
657 GURL /* url */, 663 GURL /* url */,
658 GURL /* first_party_for_cookies */, 664 GURL /* first_party_for_cookies */,
659 std::string /* cookies */) 665 std::string /* cookies */)
660 666
661 // Provide the browser process with current renderer framerate. 667 // Provide the browser process with current renderer framerate.
662 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 668 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
663 int /* routing id */, 669 int /* routing id */,
664 float /* frames per second */) 670 float /* frames per second */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698