| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, | 196 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, |
| 197 base::string16 /* javascript */) | 197 base::string16 /* javascript */) |
| 198 #endif | 198 #endif |
| 199 | 199 |
| 200 // Set the content setting rules stored by the renderer. | 200 // Set the content setting rules stored by the renderer. |
| 201 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, | 201 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, |
| 202 RendererContentSettingRules /* rules */) | 202 RendererContentSettingRules /* rules */) |
| 203 | 203 |
| 204 // Tells the renderer to create a FieldTrial, and by using a 100% probability | 204 // Tells the renderer to create a FieldTrial, and by using a 100% probability |
| 205 // for the FieldTrial, forces the FieldTrial to have assigned group name. | 205 // for the FieldTrial, forces the FieldTrial to have assigned group name. |
| 206 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetFieldTrialGroup, | 206 IPC_MESSAGE_CONTROL4(ChromeViewMsg_SetFieldTrialGroup, |
| 207 std::string /* field trial name */, | 207 std::string /* field trial name */, |
| 208 std::string /* group name that was assigned. */, | 208 std::string /* group name that was assigned. */, |
| 209 base::ProcessId /* for debugging, the sender process id */) | 209 base::ProcessId /* for debugging, the sender process id */, |
| 210 int32_t /* for debugging, the debug token */) |
| 210 | 211 |
| 211 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, | 212 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, |
| 212 int /* page_seq_no */) | 213 int /* page_seq_no */) |
| 213 | 214 |
| 214 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 215 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 215 | 216 |
| 216 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 217 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
| 217 bool /* display_instant_results */) | 218 bool /* display_instant_results */) |
| 218 | 219 |
| 219 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 220 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 | 576 |
| 576 // Record a sample string to a Rappor metric. | 577 // Record a sample string to a Rappor metric. |
| 577 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 578 std::string /* metric */, | 579 std::string /* metric */, |
| 579 std::string /* sample */) | 580 std::string /* sample */) |
| 580 | 581 |
| 581 // Record a domain and registry of a url to a Rappor metric. | 582 // Record a domain and registry of a url to a Rappor metric. |
| 582 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 583 std::string /* metric */, | 584 std::string /* metric */, |
| 584 GURL /* sample url */) | 585 GURL /* sample url */) |
| OLD | NEW |