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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 string16 /* omnibox_font */, | 346 string16 /* omnibox_font */, |
347 size_t /* omnibox_font_size */) | 347 size_t /* omnibox_font_size */) |
348 | 348 |
349 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, | 349 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
350 bool /* is_key_capture_enabled */) | 350 bool /* is_key_capture_enabled */) |
351 | 351 |
352 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 352 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
353 std::vector<InstantMostVisitedItemIDPair> /* items */) | 353 std::vector<InstantMostVisitedItemIDPair> /* items */) |
354 | 354 |
355 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 355 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
356 InstantRestrictedID /* most_visited_item_id */) | 356 GURL /* most_visited_item_url */) |
357 | 357 |
358 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 358 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
359 InstantRestrictedID /* most_visited_item_id */) | 359 GURL /* most_visited_item_url */) |
360 | 360 |
361 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 361 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
362 | 362 |
363 // Toggles visual muting of the render view area. This is on when a constrained | 363 // Toggles visual muting of the render view area. This is on when a constrained |
364 // window is showing. | 364 // window is showing. |
365 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 365 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
366 bool /* deemphazied */) | 366 bool /* deemphazied */) |
367 | 367 |
368 // Tells the renderer to translate the page contents from one language to | 368 // Tells the renderer to translate the page contents from one language to |
369 // another. | 369 // another. |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 // previous SetCookie message to be processed. | 739 // previous SetCookie message to be processed. |
740 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 740 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
741 GURL /* url */, | 741 GURL /* url */, |
742 GURL /* first_party_for_cookies */, | 742 GURL /* first_party_for_cookies */, |
743 std::string /* cookies */) | 743 std::string /* cookies */) |
744 | 744 |
745 // Provide the browser process with current renderer framerate. | 745 // Provide the browser process with current renderer framerate. |
746 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 746 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
747 int /* routing id */, | 747 int /* routing id */, |
748 float /* frames per second */) | 748 float /* frames per second */) |
OLD | NEW |