| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 | 360 |
| 361 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, | 361 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, |
| 362 string16 /* omnibox_font */, | 362 string16 /* omnibox_font */, |
| 363 size_t /* omnibox_font_size */) | 363 size_t /* omnibox_font_size */) |
| 364 | 364 |
| 365 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 365 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| 366 OmniboxFocusState /* new_focus_state */, | 366 OmniboxFocusState /* new_focus_state */, |
| 367 OmniboxFocusChangeReason /* reason */) | 367 OmniboxFocusChangeReason /* reason */) |
| 368 | 368 |
| 369 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 369 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 370 std::vector<InstantMostVisitedItemIDPair> /* items */) | 370 std::vector<InstantMostVisitedItem> /* items */) |
| 371 | 371 |
| 372 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 372 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
| 373 GURL /* url */) | 373 GURL /* url */) |
| 374 | 374 |
| 375 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 375 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
| 376 GURL /* url */) | 376 GURL /* url */) |
| 377 | 377 |
| 378 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 378 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
| 379 | 379 |
| 380 // Toggles visual muting of the render view area. This is on when a constrained | 380 // Toggles visual muting of the render view area. This is on when a constrained |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 // previous SetCookie message to be processed. | 770 // previous SetCookie message to be processed. |
| 771 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 771 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 772 GURL /* url */, | 772 GURL /* url */, |
| 773 GURL /* first_party_for_cookies */, | 773 GURL /* first_party_for_cookies */, |
| 774 std::string /* cookies */) | 774 std::string /* cookies */) |
| 775 | 775 |
| 776 // Provide the browser process with current renderer framerate. | 776 // Provide the browser process with current renderer framerate. |
| 777 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 777 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 778 int /* routing id */, | 778 int /* routing id */, |
| 779 float /* frames per second */) | 779 float /* frames per second */) |
| OLD | NEW |