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

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

Issue 11889003: Fixing ESC in instant-extended. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 10 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 307
308 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) 308 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant)
309 309
310 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, 310 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults,
311 std::vector<InstantAutocompleteResult> 311 std::vector<InstantAutocompleteResult>
312 /* native_suggestions */) 312 /* native_suggestions */)
313 313
314 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, 314 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed,
315 int /* count */) 315 int /* count */)
316 316
317 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancelSelection,
318 string16 /* value */)
319
317 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxModeChanged, 320 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxModeChanged,
318 chrome::search::Mode /* mode */) 321 chrome::search::Mode /* mode */)
319 322
320 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, 323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults,
321 bool /* display_instant_results */) 324 bool /* display_instant_results */)
322 325
323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, 326 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
324 ThemeBackgroundInfo /* value */) 327 ThemeBackgroundInfo /* value */)
325 328
326 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeAreaHeightChanged, 329 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeAreaHeightChanged,
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 // previous SetCookie message to be processed. 700 // previous SetCookie message to be processed.
698 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 701 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
699 GURL /* url */, 702 GURL /* url */,
700 GURL /* first_party_for_cookies */, 703 GURL /* first_party_for_cookies */,
701 std::string /* cookies */) 704 std::string /* cookies */)
702 705
703 // Provide the browser process with current renderer framerate. 706 // Provide the browser process with current renderer framerate.
704 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 707 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
705 int /* routing id */, 708 int /* routing id */,
706 float /* frames per second */) 709 float /* frames per second */)
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/omnibox/omnibox_view_win.cc ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698