summaryrefslogtreecommitdiffstats
path: root/printing/printed_page.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-23 23:21:21 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-23 23:21:21 +0000
commit3cce538ea624ae4fcc0e03a5e1b1c9959954a284 (patch)
tree5c985cbf578dd9786101a602e4e0259c4225ec90 /printing/printed_page.h
parente231975b842e70be98485ef15a26ae3c49150155 (diff)
downloadchromium_src-3cce538ea624ae4fcc0e03a5e1b1c9959954a284.zip
chromium_src-3cce538ea624ae4fcc0e03a5e1b1c9959954a284.tar.gz
chromium_src-3cce538ea624ae4fcc0e03a5e1b1c9959954a284.tar.bz2
Cleanup: Remove unused has_visible_overlays variable.
BUG=none TEST=none Review URL: http://codereview.chromium.org/7970021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printed_page.h')
-rw-r--r--printing/printed_page.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/printing/printed_page.h b/printing/printed_page.h
index fc0d3ba..28bf191 100644
--- a/printing/printed_page.h
+++ b/printing/printed_page.h
@@ -25,15 +25,13 @@ class PRINTING_EXPORT PrintedPage
PrintedPage(int page_number,
Metafile* metafile,
const gfx::Size& page_size,
- const gfx::Rect& page_content_rect,
- bool has_visible_overlays);
+ const gfx::Rect& page_content_rect);
// Getters
int page_number() const { return page_number_; }
const Metafile* metafile() const;
const gfx::Size& page_size() const { return page_size_; }
const gfx::Rect& page_content_rect() const { return page_content_rect_; }
- bool has_visible_overlays() const { return has_visible_overlays_; }
// Get page content rect adjusted based on
// http://dev.w3.org/csswg/css3-page/#positioning-page-box
@@ -58,9 +56,6 @@ class PRINTING_EXPORT PrintedPage
// The printable area of the page.
const gfx::Rect page_content_rect_;
- // True if the overlays should be visible in this page.
- bool has_visible_overlays_;
-
DISALLOW_COPY_AND_ASSIGN(PrintedPage);
};