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 <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 Loading... |
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 Loading... |
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 */) |
OLD | NEW |