| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, | 197 IPC_MESSAGE_ROUTED1(ChromeViewMsg_WebUIJavaScript, |
| 198 base::string16 /* javascript */) | 198 base::string16 /* javascript */) |
| 199 #endif | 199 #endif |
| 200 | 200 |
| 201 // Set the content setting rules stored by the renderer. | 201 // Set the content setting rules stored by the renderer. |
| 202 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, | 202 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, |
| 203 RendererContentSettingRules /* rules */) | 203 RendererContentSettingRules /* rules */) |
| 204 | 204 |
| 205 // Tells the renderer to create a FieldTrial, and by using a 100% probability | 205 // Tells the renderer to create a FieldTrial, and by using a 100% probability |
| 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_CONTROL4(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 base::ProcessId /* for debugging, the sender process id */, | |
| 211 int32_t /* for debugging, the debug token */) | |
| 212 | 210 |
| 213 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, | 211 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetPageSequenceNumber, |
| 214 int /* page_seq_no */) | 212 int /* page_seq_no */) |
| 215 | 213 |
| 216 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) | 214 IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
| 217 | 215 |
| 218 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, | 216 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetDisplayInstantResults, |
| 219 bool /* display_instant_results */) | 217 bool /* display_instant_results */) |
| 220 | 218 |
| 221 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, | 219 IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxFocusChanged, |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 | 567 |
| 570 // Record a sample string to a Rappor metric. | 568 // Record a sample string to a Rappor metric. |
| 571 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 569 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, |
| 572 std::string /* metric */, | 570 std::string /* metric */, |
| 573 std::string /* sample */) | 571 std::string /* sample */) |
| 574 | 572 |
| 575 // Record a domain and registry of a url to a Rappor metric. | 573 // Record a domain and registry of a url to a Rappor metric. |
| 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 574 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, |
| 577 std::string /* metric */, | 575 std::string /* metric */, |
| 578 GURL /* sample url */) | 576 GURL /* sample url */) |
| OLD | NEW |