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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 | 296 |
| 297 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, | 297 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, |
| 298 gfx::Rect /* search_box_bounds */) | 298 gfx::Rect /* search_box_bounds */) |
| 299 | 299 |
| 300 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 300 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 301 | 301 |
| 302 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, | 302 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, |
| 303 std::vector<InstantAutocompleteResult> | 303 std::vector<InstantAutocompleteResult> |
| 304 /* native_suggestions */) | 304 /* native_suggestions */) |
| 305 | 305 |
| 306 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyPress, | 306 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, |
| 307 int /* keycode */) | 307 int /* count */) |
|
sky
2012/09/18 19:44:21
Should this be a bool?
sreeram
2012/09/18 19:54:37
No. For example, if the user presses PageDown, we
| |
| 308 | 308 |
| 309 // Toggles visual muting of the render view area. This is on when a constrained | 309 // Toggles visual muting of the render view area. This is on when a constrained |
| 310 // window is showing. | 310 // window is showing. |
| 311 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 311 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
| 312 bool /* deemphazied */) | 312 bool /* deemphazied */) |
| 313 | 313 |
| 314 // Tells the renderer to translate the page contents from one language to | 314 // Tells the renderer to translate the page contents from one language to |
| 315 // another. | 315 // another. |
| 316 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, | 316 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, |
| 317 int /* page id */, | 317 int /* page id */, |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 667 // previous SetCookie message to be processed. | 667 // previous SetCookie message to be processed. |
| 668 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 668 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 669 GURL /* url */, | 669 GURL /* url */, |
| 670 GURL /* first_party_for_cookies */, | 670 GURL /* first_party_for_cookies */, |
| 671 std::string /* cookies */) | 671 std::string /* cookies */) |
| 672 | 672 |
| 673 // Provide the browser process with current renderer framerate. | 673 // Provide the browser process with current renderer framerate. |
| 674 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 674 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 675 int /* routing id */, | 675 int /* routing id */, |
| 676 float /* frames per second */) | 676 float /* frames per second */) |
| OLD | NEW |