| 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 "chrome/common/print_messages.h" | 5 #include "chrome/common/print_messages.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/string16.h" | 8 #include "base/string16.h" |
| 9 #include "ui/gfx/size.h" | 9 #include "ui/gfx/size.h" |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 PrintMsg_PrintPages_Params::PrintMsg_PrintPages_Params() | 63 PrintMsg_PrintPages_Params::PrintMsg_PrintPages_Params() |
| 64 : pages() { | 64 : pages() { |
| 65 } | 65 } |
| 66 | 66 |
| 67 PrintMsg_PrintPages_Params::~PrintMsg_PrintPages_Params() {} | 67 PrintMsg_PrintPages_Params::~PrintMsg_PrintPages_Params() {} |
| 68 | 68 |
| 69 void PrintMsg_PrintPages_Params::Reset() { | 69 void PrintMsg_PrintPages_Params::Reset() { |
| 70 params.Reset(); | 70 params.Reset(); |
| 71 pages = std::vector<int>(); | 71 pages = std::vector<int>(); |
| 72 } | 72 } |
| 73 |
| 74 PrintHostMsg_RequestPrintPreview_Params:: |
| 75 PrintHostMsg_RequestPrintPreview_Params() |
| 76 : is_modifiable(false), |
| 77 webnode_only(false), |
| 78 has_selection(false), |
| 79 selection_only(false) { |
| 80 } |
| 81 |
| 82 PrintHostMsg_RequestPrintPreview_Params:: |
| 83 ~PrintHostMsg_RequestPrintPreview_Params() {} |
| OLD | NEW |