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