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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 | 322 |
323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 323 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
324 bool /* display_instant_results */) | 324 bool /* display_instant_results */) |
325 | 325 |
326 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 326 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
327 ThemeBackgroundInfo /* value */) | 327 ThemeBackgroundInfo /* value */) |
328 | 328 |
329 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeAreaHeightChanged, | 329 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeAreaHeightChanged, |
330 int /* height */) | 330 int /* height */) |
331 | 331 |
| 332 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
| 333 bool /* is_key_capture_enabled */) |
| 334 |
332 // Toggles visual muting of the render view area. This is on when a constrained | 335 // Toggles visual muting of the render view area. This is on when a constrained |
333 // window is showing. | 336 // window is showing. |
334 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 337 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
335 bool /* deemphazied */) | 338 bool /* deemphazied */) |
336 | 339 |
337 // Tells the renderer to translate the page contents from one language to | 340 // Tells the renderer to translate the page contents from one language to |
338 // another. | 341 // another. |
339 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, | 342 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, |
340 int /* page id */, | 343 int /* page id */, |
341 std::string, /* the script injected in the page */ | 344 std::string, /* the script injected in the page */ |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 // previous SetCookie message to be processed. | 691 // previous SetCookie message to be processed. |
689 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 692 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
690 GURL /* url */, | 693 GURL /* url */, |
691 GURL /* first_party_for_cookies */, | 694 GURL /* first_party_for_cookies */, |
692 std::string /* cookies */) | 695 std::string /* cookies */) |
693 | 696 |
694 // Provide the browser process with current renderer framerate. | 697 // Provide the browser process with current renderer framerate. |
695 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 698 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
696 int /* routing id */, | 699 int /* routing id */, |
697 float /* frames per second */) | 700 float /* frames per second */) |
OLD | NEW |