Index: printing/page_setup.cc |
diff --git a/printing/page_setup.cc b/printing/page_setup.cc |
index ad0156eda455dc7e56be1988a5e54d79b22bcdaf..f0ea223adb0bbf2c1a21566950df201d509134e6 100644 |
--- a/printing/page_setup.cc |
+++ b/printing/page_setup.cc |
@@ -19,14 +19,6 @@ PageMargins::PageMargins() |
bottom(0) { |
} |
-void PageMargins::Rotate() { |
- int temp_right = right; |
- right = bottom; |
- bottom = left; |
- left = top; |
- top = temp_right; |
-} |
- |
void PageMargins::Clear() { |
header = 0; |
footer = 0; |
@@ -107,7 +99,6 @@ void PageSetup::FlipOrientation() { |
new_y, |
printable_area_.height(), |
printable_area_.width()); |
- requested_margins_.Rotate(); |
Init(new_size, new_printable_area, text_height_); |
} |
} |