diff options
author | kmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-04 22:33:05 +0000 |
---|---|---|
committer | kmadhusu@chromium.org <kmadhusu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-04 22:33:05 +0000 |
commit | 1098044ebaddc4b637b043e7e6654f33969fef67 (patch) | |
tree | 957e90b740542023e5978c1767722980fd4b1695 /chrome/common/print_messages.cc | |
parent | a0447ff91941befe514212dc07d873b2be5f2abb (diff) | |
download | chromium_src-1098044ebaddc4b637b043e7e6654f33969fef67.zip chromium_src-1098044ebaddc4b637b043e7e6654f33969fef67.tar.gz chromium_src-1098044ebaddc4b637b043e7e6654f33969fef67.tar.bz2 |
PrintPreview: Rename PrintMsg_Print_Params struct member variable (printable_size => content_size).
|printable_size| is a misnomer. |content_size| is correct.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8784012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112945 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/print_messages.cc')
-rw-r--r-- | chrome/common/print_messages.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/print_messages.cc b/chrome/common/print_messages.cc index 4464f13..8ec7074 100644 --- a/chrome/common/print_messages.cc +++ b/chrome/common/print_messages.cc @@ -10,7 +10,7 @@ PrintMsg_Print_Params::PrintMsg_Print_Params() : page_size(), - printable_size(), + content_size(), margin_top(0), margin_left(0), dpi(0), @@ -33,7 +33,7 @@ PrintMsg_Print_Params::~PrintMsg_Print_Params() {} void PrintMsg_Print_Params::Reset() { page_size = gfx::Size(); - printable_size = gfx::Size(); + content_size = gfx::Size(); margin_top = 0; margin_left = 0; dpi = 0; |