| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 300 |
| 301 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 301 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 302 | 302 |
| 303 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 303 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
| 304 bool /* display_instant_results */) | 304 bool /* display_instant_results */) |
| 305 | 305 |
| 306 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 306 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| 307 OmniboxFocusState /* new_focus_state */, | 307 OmniboxFocusState /* new_focus_state */, |
| 308 OmniboxFocusChangeReason /* reason */) | 308 OmniboxFocusChangeReason /* reason */) |
| 309 | 309 |
| 310 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxMarginChange, | 310 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMarginChange, int /* start */) |
| 311 int /* start */, | |
| 312 int /* width */) | |
| 313 | 311 |
| 314 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 312 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 315 std::vector<InstantMostVisitedItem> /* items */) | 313 std::vector<InstantMostVisitedItem> /* items */) |
| 316 | 314 |
| 317 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPromoInformation, | 315 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxPromoInformation, |
| 318 bool /* is_app_launcher_enabled */) | 316 bool /* is_app_launcher_enabled */) |
| 319 | 317 |
| 320 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, | 318 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, |
| 321 bool /* input_in_progress */) | 319 bool /* input_in_progress */) |
| 322 | 320 |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 std::vector<GURL> /* search_urls */, | 753 std::vector<GURL> /* search_urls */, |
| 756 GURL /* new_tab_page_url */) | 754 GURL /* new_tab_page_url */) |
| 757 | 755 |
| 758 // Tells listeners that a detailed message was reported to the console by | 756 // Tells listeners that a detailed message was reported to the console by |
| 759 // WebKit. | 757 // WebKit. |
| 760 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, | 758 IPC_MESSAGE_ROUTED4(ChromeViewHostMsg_DetailedConsoleMessageAdded, |
| 761 base::string16 /* message */, | 759 base::string16 /* message */, |
| 762 base::string16 /* source */, | 760 base::string16 /* source */, |
| 763 extensions::StackTrace /* stack trace */, | 761 extensions::StackTrace /* stack trace */, |
| 764 int32 /* severity level */) | 762 int32 /* severity level */) |
| OLD | NEW |