Chromium Code Reviews| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 276 bool /* verbatim */, | 276 bool /* verbatim */, |
| 277 size_t /* selection_start */, | 277 size_t /* selection_start */, |
| 278 size_t /* selection_end */) | 278 size_t /* selection_end */) |
| 279 | 279 |
| 280 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, | 280 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, |
| 281 string16 /* value */) | 281 string16 /* value */) |
| 282 | 282 |
| 283 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel, | 283 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel, |
| 284 string16 /* value */) | 284 string16 /* value */) |
| 285 | 285 |
| 286 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, | 286 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPopupResize, gfx::Rect /* bounds */) |
| 287 gfx::Rect /* search_box_bounds */) | 287 |
| 288 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxMarginChange, | |
| 289 int /* start */, int /* end */) | |
|
samarth
2012/11/16 22:08:26
nit: one per line
melevin
2012/11/16 22:34:43
Done.
| |
| 288 | 290 |
| 289 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 291 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 290 | 292 |
| 291 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, | 293 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, |
| 292 std::vector<InstantAutocompleteResult> | 294 std::vector<InstantAutocompleteResult> |
| 293 /* native_suggestions */) | 295 /* native_suggestions */) |
| 294 | 296 |
| 295 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, | 297 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, |
| 296 int /* count */) | 298 int /* count */) |
| 297 | 299 |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 655 // previous SetCookie message to be processed. | 657 // previous SetCookie message to be processed. |
| 656 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 658 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 657 GURL /* url */, | 659 GURL /* url */, |
| 658 GURL /* first_party_for_cookies */, | 660 GURL /* first_party_for_cookies */, |
| 659 std::string /* cookies */) | 661 std::string /* cookies */) |
| 660 | 662 |
| 661 // Provide the browser process with current renderer framerate. | 663 // Provide the browser process with current renderer framerate. |
| 662 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 664 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 663 int /* routing id */, | 665 int /* routing id */, |
| 664 float /* frames per second */) | 666 float /* frames per second */) |
| OLD | NEW |