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