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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 IPC_STRUCT_TRAITS_MEMBER(deadSize) | 245 IPC_STRUCT_TRAITS_MEMBER(deadSize) |
246 IPC_STRUCT_TRAITS_END() | 246 IPC_STRUCT_TRAITS_END() |
247 | 247 |
248 IPC_STRUCT_TRAITS_BEGIN(LanguageDetectionDetails) | 248 IPC_STRUCT_TRAITS_BEGIN(LanguageDetectionDetails) |
249 IPC_STRUCT_TRAITS_MEMBER(time) | 249 IPC_STRUCT_TRAITS_MEMBER(time) |
250 IPC_STRUCT_TRAITS_MEMBER(url) | 250 IPC_STRUCT_TRAITS_MEMBER(url) |
251 IPC_STRUCT_TRAITS_MEMBER(content_language) | 251 IPC_STRUCT_TRAITS_MEMBER(content_language) |
252 IPC_STRUCT_TRAITS_MEMBER(cld_language) | 252 IPC_STRUCT_TRAITS_MEMBER(cld_language) |
253 IPC_STRUCT_TRAITS_MEMBER(is_cld_reliable) | 253 IPC_STRUCT_TRAITS_MEMBER(is_cld_reliable) |
254 IPC_STRUCT_TRAITS_MEMBER(adopted_language) | 254 IPC_STRUCT_TRAITS_MEMBER(adopted_language) |
| 255 IPC_STRUCT_TRAITS_MEMBER(contents) |
255 IPC_STRUCT_TRAITS_END() | 256 IPC_STRUCT_TRAITS_END() |
256 | 257 |
257 //----------------------------------------------------------------------------- | 258 //----------------------------------------------------------------------------- |
258 // RenderView messages | 259 // RenderView messages |
259 // These are messages sent from the browser to the renderer process. | 260 // These are messages sent from the browser to the renderer process. |
260 | 261 |
261 // Tells the renderer to set its maximum cache size to the supplied value. | 262 // Tells the renderer to set its maximum cache size to the supplied value. |
262 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, | 263 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, |
263 size_t /* min_dead_capacity */, | 264 size_t /* min_dead_capacity */, |
264 size_t /* max_dead_capacity */, | 265 size_t /* max_dead_capacity */, |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
769 // previous SetCookie message to be processed. | 770 // previous SetCookie message to be processed. |
770 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 771 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
771 GURL /* url */, | 772 GURL /* url */, |
772 GURL /* first_party_for_cookies */, | 773 GURL /* first_party_for_cookies */, |
773 std::string /* cookies */) | 774 std::string /* cookies */) |
774 | 775 |
775 // Provide the browser process with current renderer framerate. | 776 // Provide the browser process with current renderer framerate. |
776 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 777 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
777 int /* routing id */, | 778 int /* routing id */, |
778 float /* frames per second */) | 779 float /* frames per second */) |
OLD | NEW |