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