| 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 <stdint.h> | 6 #include <stdint.h> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 // for the FieldTrial, forces the FieldTrial to have assigned group name. | 206 // for the FieldTrial, forces the FieldTrial to have assigned group name. |
| 207 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, | 207 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, |
| 208 std::string /* field trial name */, | 208 std::string /* field trial name */, |
| 209 std::string /* group name that was assigned. */) | 209 std::string /* group name that was assigned. */) |
| 210 | 210 |
| 211 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, | 211 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, |
| 212 int /* page_seq_no */) | 212 int /* page_seq_no */) |
| 213 | 213 |
| 214 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 214 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 215 | 215 |
| 216 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | |
| 217 bool /* display_instant_results */) | |
| 218 | |
| 219 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 216 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| 220 OmniboxFocusState /* new_focus_state */, | 217 OmniboxFocusState /* new_focus_state */, |
| 221 OmniboxFocusChangeReason /* reason */) | 218 OmniboxFocusChangeReason /* reason */) |
| 222 | 219 |
| 223 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, | 220 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxMostVisitedItemsChanged, |
| 224 std::vector<InstantMostVisitedItem> /* items */) | 221 std::vector<InstantMostVisitedItem> /* items */) |
| 225 | 222 |
| 226 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, | 223 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetInputInProgress, |
| 227 bool /* input_in_progress */) | 224 bool /* input_in_progress */) |
| 228 | 225 |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 554 |
| 558 // Record a sample string to a Rappor metric. | 555 // Record a sample string to a Rappor metric. |
| 559 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 556 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 560 std::string /* metric */, | 557 std::string /* metric */, |
| 561 std::string /* sample */) | 558 std::string /* sample */) |
| 562 | 559 |
| 563 // Record a domain and registry of a url to a Rappor metric. | 560 // Record a domain and registry of a url to a Rappor metric. |
| 564 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 561 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 565 std::string /* metric */, | 562 std::string /* metric */, |
| 566 GURL /* sample url */) | 563 GURL /* sample url */) |
| OLD | NEW |