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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 bool /* verbatim */, | 298 bool /* verbatim */, |
299 size_t /* selection_start */, | 299 size_t /* selection_start */, |
300 size_t /* selection_end */) | 300 size_t /* selection_end */) |
301 | 301 |
302 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, | 302 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, |
303 string16 /* value */) | 303 string16 /* value */) |
304 | 304 |
305 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel, | 305 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel, |
306 string16 /* value */) | 306 string16 /* value */) |
307 | 307 |
308 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, | 308 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPopupResize, |
309 gfx::Rect /* search_box_bounds */) | 309 gfx::Rect /* bounds */) |
| 310 |
| 311 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxMarginChange, |
| 312 int /* start */, |
| 313 int /* end */) |
310 | 314 |
311 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 315 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
312 | 316 |
313 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, | 317 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, |
314 std::vector<InstantAutocompleteResult> | 318 std::vector<InstantAutocompleteResult> |
315 /* native_suggestions */) | 319 /* native_suggestions */) |
316 | 320 |
317 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, | 321 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, |
318 int /* count */) | 322 int /* count */) |
319 | 323 |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 // previous SetCookie message to be processed. | 683 // previous SetCookie message to be processed. |
680 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 684 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
681 GURL /* url */, | 685 GURL /* url */, |
682 GURL /* first_party_for_cookies */, | 686 GURL /* first_party_for_cookies */, |
683 std::string /* cookies */) | 687 std::string /* cookies */) |
684 | 688 |
685 // Provide the browser process with current renderer framerate. | 689 // Provide the browser process with current renderer framerate. |
686 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 690 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
687 int /* routing id */, | 691 int /* routing id */, |
688 float /* frames per second */) | 692 float /* frames per second */) |
OLD | NEW |