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