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 #include "base/basictypes.h" | |
6 #include "base/strings/string16.h" | 5 #include "base/strings/string16.h" |
7 #include "ui/gfx/geometry/size.h" | 6 #include "ui/gfx/geometry/size.h" |
8 | 7 |
9 #define IPC_MESSAGE_IMPL | 8 #define IPC_MESSAGE_IMPL |
10 #include "components/printing/common/print_messages.h" | 9 #include "components/printing/common/print_messages.h" |
11 | 10 |
12 // Generate constructors. | 11 // Generate constructors. |
13 #include "ipc/struct_constructor_macros.h" | 12 #include "ipc/struct_constructor_macros.h" |
14 #include "components/printing/common/print_messages.h" | 13 #include "components/printing/common/print_messages.h" |
15 | 14 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 PrintHostMsg_SetOptionsFromDocument_Params:: | 109 PrintHostMsg_SetOptionsFromDocument_Params:: |
111 PrintHostMsg_SetOptionsFromDocument_Params() | 110 PrintHostMsg_SetOptionsFromDocument_Params() |
112 : is_scaling_disabled(false), | 111 : is_scaling_disabled(false), |
113 copies(0), | 112 copies(0), |
114 duplex(printing::UNKNOWN_DUPLEX_MODE) { | 113 duplex(printing::UNKNOWN_DUPLEX_MODE) { |
115 } | 114 } |
116 | 115 |
117 PrintHostMsg_SetOptionsFromDocument_Params:: | 116 PrintHostMsg_SetOptionsFromDocument_Params:: |
118 ~PrintHostMsg_SetOptionsFromDocument_Params() { | 117 ~PrintHostMsg_SetOptionsFromDocument_Params() { |
119 } | 118 } |
OLD | NEW |