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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 | 361 |
362 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, | 362 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, |
363 string16 /* omnibox_font */, | 363 string16 /* omnibox_font */, |
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<InstantMostVisitedItem> /* items */) |
372 | 372 |
373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 373 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
374 GURL /* url */) | 374 GURL /* url */) |
375 | 375 |
376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 376 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
377 GURL /* url */) | 377 GURL /* url */) |
378 | 378 |
379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 379 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
380 | 380 |
381 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) | 381 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
773 // previous SetCookie message to be processed. | 773 // previous SetCookie message to be processed. |
774 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 774 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
775 GURL /* url */, | 775 GURL /* url */, |
776 GURL /* first_party_for_cookies */, | 776 GURL /* first_party_for_cookies */, |
777 std::string /* cookies */) | 777 std::string /* cookies */) |
778 | 778 |
779 // Provide the browser process with current renderer framerate. | 779 // Provide the browser process with current renderer framerate. |
780 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 780 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
781 int /* routing id */, | 781 int /* routing id */, |
782 float /* frames per second */) | 782 float /* frames per second */) |
OLD | NEW |