| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 348 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
| 349 bool /* display_instant_results */) | 349 bool /* display_instant_results */) |
| 350 | 350 |
| 351 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 351 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
| 352 ThemeBackgroundInfo /* value */) | 352 ThemeBackgroundInfo /* value */) |
| 353 | 353 |
| 354 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, | 354 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFontInformation, |
| 355 string16 /* omnibox_font */, | 355 string16 /* omnibox_font */, |
| 356 size_t /* omnibox_font_size */) | 356 size_t /* omnibox_font_size */) |
| 357 | 357 |
| 358 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPromoInformation, |
| 359 bool /* is_app_launcher_enabled */) |
| 360 |
| 358 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 361 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| 359 OmniboxFocusState /* new_focus_state */, | 362 OmniboxFocusState /* new_focus_state */, |
| 360 OmniboxFocusChangeReason /* reason */) | 363 OmniboxFocusChangeReason /* reason */) |
| 361 | 364 |
| 362 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, | 365 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, |
| 363 bool /* input_in_progress */) | 366 bool /* input_in_progress */) |
| 364 | 367 |
| 365 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 368 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 366 std::vector<InstantMostVisitedItem> /* items */) | 369 std::vector<InstantMostVisitedItem> /* items */) |
| 367 | 370 |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 // previous SetCookie message to be processed. | 743 // previous SetCookie message to be processed. |
| 741 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 744 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 742 GURL /* url */, | 745 GURL /* url */, |
| 743 GURL /* first_party_for_cookies */, | 746 GURL /* first_party_for_cookies */, |
| 744 std::string /* cookies */) | 747 std::string /* cookies */) |
| 745 | 748 |
| 746 // Provide the browser process with current renderer framerate. | 749 // Provide the browser process with current renderer framerate. |
| 747 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 750 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 748 int /* routing id */, | 751 int /* routing id */, |
| 749 float /* frames per second */) | 752 float /* frames per second */) |
| OLD | NEW |