chromium-style fixes (#12826)
This commit is contained in:
parent
7be30bb249
commit
b280ea5579
11 changed files with 30 additions and 21 deletions
|
@ -28,7 +28,9 @@ PrintMsg_Print_Params::PrintMsg_Print_Params()
|
|||
url(),
|
||||
should_print_backgrounds(false) {}
|
||||
|
||||
PrintMsg_Print_Params::~PrintMsg_Print_Params() {}
|
||||
PrintMsg_Print_Params::PrintMsg_Print_Params(const PrintMsg_Print_Params&) =
|
||||
default;
|
||||
PrintMsg_Print_Params::~PrintMsg_Print_Params() = default;
|
||||
|
||||
void PrintMsg_Print_Params::Reset() {
|
||||
page_size = gfx::Size();
|
||||
|
@ -53,8 +55,10 @@ void PrintMsg_Print_Params::Reset() {
|
|||
}
|
||||
|
||||
PrintMsg_PrintPages_Params::PrintMsg_PrintPages_Params() : pages() {}
|
||||
PrintMsg_PrintPages_Params::PrintMsg_PrintPages_Params(
|
||||
const PrintMsg_PrintPages_Params&) = default;
|
||||
|
||||
PrintMsg_PrintPages_Params::~PrintMsg_PrintPages_Params() {}
|
||||
PrintMsg_PrintPages_Params::~PrintMsg_PrintPages_Params() = default;
|
||||
|
||||
void PrintMsg_PrintPages_Params::Reset() {
|
||||
params.Reset();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue