| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 IPC_STRUCT_TRAITS_MEMBER(text) | 166 IPC_STRUCT_TRAITS_MEMBER(text) |
| 167 IPC_STRUCT_TRAITS_MEMBER(behavior) | 167 IPC_STRUCT_TRAITS_MEMBER(behavior) |
| 168 IPC_STRUCT_TRAITS_MEMBER(type) | 168 IPC_STRUCT_TRAITS_MEMBER(type) |
| 169 IPC_STRUCT_TRAITS_END() | 169 IPC_STRUCT_TRAITS_END() |
| 170 | 170 |
| 171 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) | 171 IPC_STRUCT_TRAITS_BEGIN(RendererContentSettingRules) |
| 172 IPC_STRUCT_TRAITS_MEMBER(image_rules) | 172 IPC_STRUCT_TRAITS_MEMBER(image_rules) |
| 173 IPC_STRUCT_TRAITS_MEMBER(script_rules) | 173 IPC_STRUCT_TRAITS_MEMBER(script_rules) |
| 174 IPC_STRUCT_TRAITS_END() | 174 IPC_STRUCT_TRAITS_END() |
| 175 | 175 |
| 176 IPC_STRUCT_TRAITS_BEGIN(ThemeBackgroundInfo) |
| 177 IPC_STRUCT_TRAITS_MEMBER(color_r) |
| 178 IPC_STRUCT_TRAITS_MEMBER(color_g) |
| 179 IPC_STRUCT_TRAITS_MEMBER(color_b) |
| 180 IPC_STRUCT_TRAITS_MEMBER(color_a) |
| 181 IPC_STRUCT_TRAITS_MEMBER(theme_id) |
| 182 IPC_STRUCT_TRAITS_MEMBER(image_alignment) |
| 183 IPC_STRUCT_TRAITS_MEMBER(image_tiling) |
| 184 IPC_STRUCT_TRAITS_MEMBER(image_height) |
| 185 IPC_STRUCT_TRAITS_END() |
| 186 |
| 176 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCache::ResourceTypeStat) | 187 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCache::ResourceTypeStat) |
| 177 IPC_STRUCT_TRAITS_MEMBER(count) | 188 IPC_STRUCT_TRAITS_MEMBER(count) |
| 178 IPC_STRUCT_TRAITS_MEMBER(size) | 189 IPC_STRUCT_TRAITS_MEMBER(size) |
| 179 IPC_STRUCT_TRAITS_MEMBER(liveSize) | 190 IPC_STRUCT_TRAITS_MEMBER(liveSize) |
| 180 IPC_STRUCT_TRAITS_MEMBER(decodedSize) | 191 IPC_STRUCT_TRAITS_MEMBER(decodedSize) |
| 181 IPC_STRUCT_TRAITS_END() | 192 IPC_STRUCT_TRAITS_END() |
| 182 | 193 |
| 183 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCache::ResourceTypeStats) | 194 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCache::ResourceTypeStats) |
| 184 IPC_STRUCT_TRAITS_MEMBER(images) | 195 IPC_STRUCT_TRAITS_MEMBER(images) |
| 185 IPC_STRUCT_TRAITS_MEMBER(cssStyleSheets) | 196 IPC_STRUCT_TRAITS_MEMBER(cssStyleSheets) |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, | 302 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxAutocompleteResults, |
| 292 std::vector<InstantAutocompleteResult> | 303 std::vector<InstantAutocompleteResult> |
| 293 /* native_suggestions */) | 304 /* native_suggestions */) |
| 294 | 305 |
| 295 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, | 306 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxUpOrDownKeyPressed, |
| 296 int /* count */) | 307 int /* count */) |
| 297 | 308 |
| 298 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxActiveTabModeChanged, | 309 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxActiveTabModeChanged, |
| 299 bool /* active_tab_is_ntp */) | 310 bool /* active_tab_is_ntp */) |
| 300 | 311 |
| 312 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
| 313 ThemeBackgroundInfo /* value */) |
| 314 |
| 315 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeAreaHeightChanged, |
| 316 int /* height */) |
| 317 |
| 301 // Toggles visual muting of the render view area. This is on when a constrained | 318 // Toggles visual muting of the render view area. This is on when a constrained |
| 302 // window is showing. | 319 // window is showing. |
| 303 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, | 320 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetVisuallyDeemphasized, |
| 304 bool /* deemphazied */) | 321 bool /* deemphazied */) |
| 305 | 322 |
| 306 // Tells the renderer to translate the page contents from one language to | 323 // Tells the renderer to translate the page contents from one language to |
| 307 // another. | 324 // another. |
| 308 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, | 325 IPC_MESSAGE_ROUTED4(ChromeViewMsg_TranslatePage, |
| 309 int /* page id */, | 326 int /* page id */, |
| 310 std::string, /* the script injected in the page */ | 327 std::string, /* the script injected in the page */ |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 // previous SetCookie message to be processed. | 668 // previous SetCookie message to be processed. |
| 652 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, | 669 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, |
| 653 GURL /* url */, | 670 GURL /* url */, |
| 654 GURL /* first_party_for_cookies */, | 671 GURL /* first_party_for_cookies */, |
| 655 std::string /* cookies */) | 672 std::string /* cookies */) |
| 656 | 673 |
| 657 // Provide the browser process with current renderer framerate. | 674 // Provide the browser process with current renderer framerate. |
| 658 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, | 675 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, |
| 659 int /* routing id */, | 676 int /* routing id */, |
| 660 float /* frames per second */) | 677 float /* frames per second */) |
| OLD | NEW |