| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 | 316 |
| 317 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 317 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 318 | 318 |
| 319 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, | 319 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, |
| 320 std::vector<InstantAutocompleteResult> | 320 std::vector<InstantAutocompleteResult> |
| 321 /* native_suggestions */) | 321 /* native_suggestions */) |
| 322 | 322 |
| 323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, | 323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, |
| 324 int /* count */) | 324 int /* count */) |
| 325 | 325 |
| 326 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxEscKeyPressed) |
| 327 |
| 326 IPC_MESSAGE_ROUTED4(ChromeViewMsg_SearchBoxCancelSelection, | 328 IPC_MESSAGE_ROUTED4(ChromeViewMsg_SearchBoxCancelSelection, |
| 327 string16 /* value */, | 329 string16 /* value */, |
| 328 bool /* verbatim */, | 330 bool /* verbatim */, |
| 329 size_t /* selection_start */, | 331 size_t /* selection_start */, |
| 330 size_t /* selection_end */) | 332 size_t /* selection_end */) |
| 331 | 333 |
| 332 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxModeChanged, | 334 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxModeChanged, |
| 333 SearchMode /* mode */) | 335 SearchMode /* mode */) |
| 334 | 336 |
| 335 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 337 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 // previous SetCookie message to be processed. | 737 // previous SetCookie message to be processed. |
| 736 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 738 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 737 GURL /* url */, | 739 GURL /* url */, |
| 738 GURL /* first_party_for_cookies */, | 740 GURL /* first_party_for_cookies */, |
| 739 std::string /* cookies */) | 741 std::string /* cookies */) |
| 740 | 742 |
| 741 // Provide the browser process with current renderer framerate. | 743 // Provide the browser process with current renderer framerate. |
| 742 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 744 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 743 int /* routing id */, | 745 int /* routing id */, |
| 744 float /* frames per second */) | 746 float /* frames per second */) |
| OLD | NEW |