| 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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 size_t /* omnibox_font_size */) | 364 size_t /* omnibox_font_size */) |
| 365 | 365 |
| 366 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 366 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| 367 OmniboxFocusState /* new_focus_state */, | 367 OmniboxFocusState /* new_focus_state */, |
| 368 OmniboxFocusChangeReason /* reason */) | 368 OmniboxFocusChangeReason /* reason */) |
| 369 | 369 |
| 370 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 370 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 371 std::vector<InstantMostVisitedItemIDPair> /* items */) | 371 std::vector<InstantMostVisitedItemIDPair> /* items */) |
| 372 | 372 |
| 373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
| 374 InstantRestrictedID /* most_visited_item_id */) | 374 GURL /* url */) |
| 375 | 375 |
| 376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 377 InstantRestrictedID /* most_visited_item_id */) | 377 GURL /* url */) |
| 378 | 378 |
| 379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
| 380 | 380 |
| 381 // Toggles visual muting of the render view area. This is on when a constrained | 381 // Toggles visual muting of the render view area. This is on when a constrained |
| 382 // window is showing. | 382 // window is showing. |
| 383 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 383 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
| 384 bool /* deemphazied */) | 384 bool /* deemphazied */) |
| 385 | 385 |
| 386 // Tells the renderer to translate the page contents from one language to | 386 // Tells the renderer to translate the page contents from one language to |
| 387 // another. | 387 // another. |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 771 // previous SetCookie message to be processed. | 771 // previous SetCookie message to be processed. |
| 772 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 772 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 773 GURL /* url */, | 773 GURL /* url */, |
| 774 GURL /* first_party_for_cookies */, | 774 GURL /* first_party_for_cookies */, |
| 775 std::string /* cookies */) | 775 std::string /* cookies */) |
| 776 | 776 |
| 777 // Provide the browser process with current renderer framerate. | 777 // Provide the browser process with current renderer framerate. |
| 778 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 778 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 779 int /* routing id */, | 779 int /* routing id */, |
| 780 float /* frames per second */) | 780 float /* frames per second */) |
| OLD | NEW |