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 | |
332 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxStoppedCapturingKeyStrokes) | |
sreeram
2012/11/29 13:22:31
This message doesn't seem to be needed anymore. Re
samarth
2012/11/29 17:28:21
Done.
| |
333 | |
329 // Toggles visual muting of the render view area. This is on when a constrained | 334 // Toggles visual muting of the render view area. This is on when a constrained |
330 // window is showing. | 335 // window is showing. |
331 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 336 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
332 bool /* deemphazied */) | 337 bool /* deemphazied */) |
333 | 338 |
334 // Tells the renderer to translate the page contents from one language to | 339 // Tells the renderer to translate the page contents from one language to |
335 // another. | 340 // another. |
336 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, | 341 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, |
337 int /* page id */, | 342 int /* page id */, |
338 std::string, /* the script injected in the page */ | 343 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. | 690 // previous SetCookie message to be processed. |
686 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 691 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
687 GURL /* url */, | 692 GURL /* url */, |
688 GURL /* first_party_for_cookies */, | 693 GURL /* first_party_for_cookies */, |
689 std::string /* cookies */) | 694 std::string /* cookies */) |
690 | 695 |
691 // Provide the browser process with current renderer framerate. | 696 // Provide the browser process with current renderer framerate. |
692 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 697 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
693 int /* routing id */, | 698 int /* routing id */, |
694 float /* frames per second */) | 699 float /* frames per second */) |
OLD | NEW |