| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 332 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
| 333 ThemeBackgroundInfo /* value */) | 333 ThemeBackgroundInfo /* value */) |
| 334 | 334 |
| 335 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, | 335 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, |
| 336 string16 /* omnibox_font */, | 336 string16 /* omnibox_font */, |
| 337 size_t /* omnibox_font_size */) | 337 size_t /* omnibox_font_size */) |
| 338 | 338 |
| 339 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, | 339 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxKeyCaptureChanged, |
| 340 bool /* is_key_capture_enabled */) | 340 bool /* is_key_capture_enabled */) |
| 341 | 341 |
| 342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxGrantChromeSearchAccessFromOrigin, |
| 343 GURL /* origin_url */) |
| 344 |
| 342 IPC_MESSAGE_ROUTED1(ChromeViewMsg_InstantMostVisitedItemsChanged, | 345 IPC_MESSAGE_ROUTED1(ChromeViewMsg_InstantMostVisitedItemsChanged, |
| 343 std::vector<MostVisitedItem> /* items */) | 346 std::vector<MostVisitedItem> /* items */) |
| 344 | 347 |
| 345 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantDeleteMostVisitedItem, | 348 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantDeleteMostVisitedItem, |
| 346 GURL /* url */) | 349 GURL /* url */) |
| 347 | 350 |
| 348 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantUndoMostVisitedDeletion, | 351 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_InstantUndoMostVisitedDeletion, |
| 349 GURL /* url */) | 352 GURL /* url */) |
| 350 | 353 |
| 351 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_InstantUndoAllMostVisitedDeletions) | 354 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_InstantUndoAllMostVisitedDeletions) |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 // previous SetCookie message to be processed. | 727 // previous SetCookie message to be processed. |
| 725 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 728 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 726 GURL /* url */, | 729 GURL /* url */, |
| 727 GURL /* first_party_for_cookies */, | 730 GURL /* first_party_for_cookies */, |
| 728 std::string /* cookies */) | 731 std::string /* cookies */) |
| 729 | 732 |
| 730 // Provide the browser process with current renderer framerate. | 733 // Provide the browser process with current renderer framerate. |
| 731 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 734 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 732 int /* routing id */, | 735 int /* routing id */, |
| 733 float /* frames per second */) | 736 float /* frames per second */) |
| OLD | NEW |