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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 335 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
336 ThemeBackgroundInfo /* value */) | 336 ThemeBackgroundInfo /* value */) |
337 | 337 |
338 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, | 338 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, |
339 string16 /* omnibox_font */, | 339 string16 /* omnibox_font */, |
340 size_t /* omnibox_font_size */) | 340 size_t /* omnibox_font_size */) |
341 | 341 |
342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, | 342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
343 bool /* is_key_capture_enabled */) | 343 bool /* is_key_capture_enabled */) |
344 | 344 |
345 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin, | |
346 GURL /* origin_url */) | |
347 | |
348 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 345 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
349 std::vector<InstantMostVisitedItemIDPair> /* items */) | 346 std::vector<InstantMostVisitedItemIDPair> /* items */) |
350 | 347 |
351 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, | 348 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxDeleteMostVisitedItem, |
352 InstantRestrictedID /* most_visited_item_id */) | 349 InstantRestrictedID /* most_visited_item_id */) |
353 | 350 |
354 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 351 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
355 InstantRestrictedID /* most_visited_item_id */) | 352 InstantRestrictedID /* most_visited_item_id */) |
356 | 353 |
357 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) | 354 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_SearchBoxUndoAllMostVisitedDeletions) |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
737 // previous SetCookie message to be processed. | 734 // previous SetCookie message to be processed. |
738 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 735 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
739 GURL /* url */, | 736 GURL /* url */, |
740 GURL /* first_party_for_cookies */, | 737 GURL /* first_party_for_cookies */, |
741 std::string /* cookies */) | 738 std::string /* cookies */) |
742 | 739 |
743 // Provide the browser process with current renderer framerate. | 740 // Provide the browser process with current renderer framerate. |
744 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 741 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
745 int /* routing id */, | 742 int /* routing id */, |
746 float /* frames per second */) | 743 float /* frames per second */) |
OLD | NEW |