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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 RendererContentSettingRules /* rules */) | 230 RendererContentSettingRules /* rules */) |
231 | 231 |
232 // Tells the render view to load all blocked plugins with the given identifier. | 232 // Tells the render view to load all blocked plugins with the given identifier. |
233 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, | 233 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, |
234 std::string /* identifier */) | 234 std::string /* identifier */) |
235 | 235 |
236 // Asks the renderer to send back stats on the WebCore cache broken down by | 236 // Asks the renderer to send back stats on the WebCore cache broken down by |
237 // resource types. | 237 // resource types. |
238 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetCacheResourceStats) | 238 IPC_MESSAGE_CONTROL0(ChromeViewMsg_GetCacheResourceStats) |
239 | 239 |
240 // Asks the renderer to send back Histograms. | |
241 IPC_MESSAGE_CONTROL1(ChromeViewMsg_GetRendererHistograms, | |
242 int /* sequence number of Renderer Histograms. */) | |
243 | |
244 // Tells the renderer to create a FieldTrial, and by using a 100% probability | 240 // Tells the renderer to create a FieldTrial, and by using a 100% probability |
245 // for the FieldTrial, forces the FieldTrial to have assigned group name. | 241 // for the FieldTrial, forces the FieldTrial to have assigned group name. |
246 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, | 242 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, |
247 std::string /* field trial name */, | 243 std::string /* field trial name */, |
248 std::string /* group name that was assigned. */) | 244 std::string /* group name that was assigned. */) |
249 | 245 |
250 #if defined(USE_TCMALLOC) | 246 #if defined(USE_TCMALLOC) |
251 // Asks the renderer to enable/disable Tcmalloc heap profiling. | 247 // Asks the renderer to enable/disable Tcmalloc heap profiling. |
252 // Note: filename_prefix arg is effectively ignored since the render process | 248 // Note: filename_prefix arg is effectively ignored since the render process |
253 // will be unable to write files to disk. Instead use WriteTcmallocHeapProfile | 249 // will be unable to write files to disk. Instead use WriteTcmallocHeapProfile |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 // previous SetCookie message to be processed. | 618 // previous SetCookie message to be processed. |
623 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 619 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
624 GURL /* url */, | 620 GURL /* url */, |
625 GURL /* first_party_for_cookies */, | 621 GURL /* first_party_for_cookies */, |
626 std::string /* cookies */) | 622 std::string /* cookies */) |
627 | 623 |
628 // Provide the browser process with current renderer framerate. | 624 // Provide the browser process with current renderer framerate. |
629 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 625 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
630 int /* routing id */, | 626 int /* routing id */, |
631 float /* frames per second */) | 627 float /* frames per second */) |
OLD | NEW |