OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // TODO(sgurun) copied from chrome/common. Remove after crbug.com/322276 | 5 // TODO(sgurun) copied from chrome/common. Remove after crbug.com/322276 |
6 | 6 |
7 #include "android_webview/common/print_messages.h" | 7 #include "android_webview/common/print_messages.h" |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "ui/gfx/size.h" | 11 #include "ui/gfx/geometry/size.h" |
12 | 12 |
13 PrintMsg_Print_Params::PrintMsg_Print_Params() | 13 PrintMsg_Print_Params::PrintMsg_Print_Params() |
14 : page_size(), | 14 : page_size(), |
15 content_size(), | 15 content_size(), |
16 printable_area(), | 16 printable_area(), |
17 margin_top(0), | 17 margin_top(0), |
18 margin_left(0), | 18 margin_left(0), |
19 dpi(0), | 19 dpi(0), |
20 min_shrink(0), | 20 min_shrink(0), |
21 max_shrink(0), | 21 max_shrink(0), |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 PrintHostMsg_RequestPrintPreview_Params:: | 74 PrintHostMsg_RequestPrintPreview_Params:: |
75 PrintHostMsg_RequestPrintPreview_Params() | 75 PrintHostMsg_RequestPrintPreview_Params() |
76 : is_modifiable(false), | 76 : is_modifiable(false), |
77 webnode_only(false), | 77 webnode_only(false), |
78 has_selection(false), | 78 has_selection(false), |
79 selection_only(false) { | 79 selection_only(false) { |
80 } | 80 } |
81 | 81 |
82 PrintHostMsg_RequestPrintPreview_Params:: | 82 PrintHostMsg_RequestPrintPreview_Params:: |
83 ~PrintHostMsg_RequestPrintPreview_Params() {} | 83 ~PrintHostMsg_RequestPrintPreview_Params() {} |
OLD | NEW |