| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 // previous SetCookie message to be processed. | 695 // previous SetCookie message to be processed. |
| 692 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 696 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 693 GURL /* url */, | 697 GURL /* url */, |
| 694 GURL /* first_party_for_cookies */, | 698 GURL /* first_party_for_cookies */, |
| 695 std::string /* cookies */) | 699 std::string /* cookies */) |
| 696 | 700 |
| 697 // Provide the browser process with current renderer framerate. | 701 // Provide the browser process with current renderer framerate. |
| 698 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 702 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 699 int /* routing id */, | 703 int /* routing id */, |
| 700 float /* frames per second */) | 704 float /* frames per second */) |
| OLD | NEW |