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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 string16 /* omnibox_font */, | 358 string16 /* omnibox_font */, |
359 size_t /* omnibox_font_size */) | 359 size_t /* omnibox_font_size */) |
360 | 360 |
361 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, | 361 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
362 bool /* is_key_capture_enabled */) | 362 bool /* is_key_capture_enabled */) |
363 | 363 |
364 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 364 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
365 std::vector<InstantMostVisitedItemIDPair> /* items */) | 365 std::vector<InstantMostVisitedItemIDPair> /* items */) |
366 | 366 |
367 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 367 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
368 InstantRestrictedID /* most_visited_item_id */) | 368 GURL /* url */) |
369 | 369 |
370 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 370 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
371 InstantRestrictedID /* most_visited_item_id */) | 371 GURL /* url */) |
372 | 372 |
373 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 373 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
374 | 374 |
375 // Toggles visual muting of the render view area. This is on when a constrained | 375 // Toggles visual muting of the render view area. This is on when a constrained |
376 // window is showing. | 376 // window is showing. |
377 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 377 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
378 bool /* deemphazied */) | 378 bool /* deemphazied */) |
379 | 379 |
380 // Tells the renderer to translate the page contents from one language to | 380 // Tells the renderer to translate the page contents from one language to |
381 // another. | 381 // another. |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 // previous SetCookie message to be processed. | 760 // previous SetCookie message to be processed. |
761 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 761 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
762 GURL /* url */, | 762 GURL /* url */, |
763 GURL /* first_party_for_cookies */, | 763 GURL /* first_party_for_cookies */, |
764 std::string /* cookies */) | 764 std::string /* cookies */) |
765 | 765 |
766 // Provide the browser process with current renderer framerate. | 766 // Provide the browser process with current renderer framerate. |
767 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 767 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
768 int /* routing id */, | 768 int /* routing id */, |
769 float /* frames per second */) | 769 float /* frames per second */) |
OLD | NEW |