| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/public/common/common_param_traits.h" |
| 6 #include "content/shell/common/shell_test_configuration.h" |
| 7 #include "ipc/ipc_message_macros.h" |
| 8 #include "ui/gfx/ipc/gfx_param_traits.h" |
| 9 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" |
| 10 |
| 11 IPC_STRUCT_TRAITS_BEGIN(content::ShellTestConfiguration) |
| 12 IPC_STRUCT_TRAITS_MEMBER(current_working_directory) |
| 13 IPC_STRUCT_TRAITS_MEMBER(temp_path) |
| 14 IPC_STRUCT_TRAITS_MEMBER(test_url) |
| 15 IPC_STRUCT_TRAITS_MEMBER(enable_pixel_dumping) |
| 16 IPC_STRUCT_TRAITS_MEMBER(allow_external_pages) |
| 17 IPC_STRUCT_TRAITS_MEMBER(expected_pixel_hash) |
| 18 IPC_STRUCT_TRAITS_MEMBER(initial_size) |
| 19 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |