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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 IPC_STRUCT_TRAITS_MEMBER(deadSize) | 242 IPC_STRUCT_TRAITS_MEMBER(deadSize) |
243 IPC_STRUCT_TRAITS_END() | 243 IPC_STRUCT_TRAITS_END() |
244 | 244 |
245 IPC_STRUCT_TRAITS_BEGIN(LanguageDetectionDetails) | 245 IPC_STRUCT_TRAITS_BEGIN(LanguageDetectionDetails) |
246 IPC_STRUCT_TRAITS_MEMBER(time) | 246 IPC_STRUCT_TRAITS_MEMBER(time) |
247 IPC_STRUCT_TRAITS_MEMBER(url) | 247 IPC_STRUCT_TRAITS_MEMBER(url) |
248 IPC_STRUCT_TRAITS_MEMBER(content_language) | 248 IPC_STRUCT_TRAITS_MEMBER(content_language) |
249 IPC_STRUCT_TRAITS_MEMBER(cld_language) | 249 IPC_STRUCT_TRAITS_MEMBER(cld_language) |
250 IPC_STRUCT_TRAITS_MEMBER(is_cld_reliable) | 250 IPC_STRUCT_TRAITS_MEMBER(is_cld_reliable) |
251 IPC_STRUCT_TRAITS_MEMBER(adopted_language) | 251 IPC_STRUCT_TRAITS_MEMBER(adopted_language) |
| 252 IPC_STRUCT_TRAITS_MEMBER(contents) |
252 IPC_STRUCT_TRAITS_END() | 253 IPC_STRUCT_TRAITS_END() |
253 | 254 |
254 //----------------------------------------------------------------------------- | 255 //----------------------------------------------------------------------------- |
255 // RenderView messages | 256 // RenderView messages |
256 // These are messages sent from the browser to the renderer process. | 257 // These are messages sent from the browser to the renderer process. |
257 | 258 |
258 // Tells the renderer to set its maximum cache size to the supplied value. | 259 // Tells the renderer to set its maximum cache size to the supplied value. |
259 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, | 260 IPC_MESSAGE_CONTROL3(ChromeViewMsg_SetCacheCapacities, |
260 size_t /* min_dead_capacity */, | 261 size_t /* min_dead_capacity */, |
261 size_t /* max_dead_capacity */, | 262 size_t /* max_dead_capacity */, |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 // previous SetCookie message to be processed. | 761 // previous SetCookie message to be processed. |
761 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 762 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
762 GURL /* url */, | 763 GURL /* url */, |
763 GURL /* first_party_for_cookies */, | 764 GURL /* first_party_for_cookies */, |
764 std::string /* cookies */) | 765 std::string /* cookies */) |
765 | 766 |
766 // Provide the browser process with current renderer framerate. | 767 // Provide the browser process with current renderer framerate. |
767 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 768 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
768 int /* routing id */, | 769 int /* routing id */, |
769 float /* frames per second */) | 770 float /* frames per second */) |
OLD | NEW |