Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1197)

Unified Diff: Source/core/page/PrintContext.h

Issue 1110483002: Remove argument |allowHorizontalTiling| from computePageRectWithPageSize (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/core/page/PrintContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/PrintContext.h
diff --git a/Source/core/page/PrintContext.h b/Source/core/page/PrintContext.h
index 3a89e33b202ed58493bfe702d37c7608304b3fb8..95bee505ee2150585f90a0b3b6be6ecc18735ed3 100644
--- a/Source/core/page/PrintContext.h
+++ b/Source/core/page/PrintContext.h
@@ -54,7 +54,7 @@ public:
// Deprecated. Page size computation is already in this class, clients shouldn't be copying it.
// FIXME: Everyone passes |false| for the second paramer. We should remove the second parameter.
- virtual void computePageRectsWithPageSize(const FloatSize& pageSizeInPixels, bool allowHorizontalTiling);
+ virtual void computePageRectsWithPageSize(const FloatSize& pageSizeInPixels);
// These are only valid after page rects are computed.
size_t pageCount() const { return m_pageRects.size(); }
@@ -84,7 +84,7 @@ protected:
Vector<IntRect> m_pageRects;
private:
- void computePageRectsWithPageSizeInternal(const FloatSize& pageSizeInPixels, bool allowHorizontalTiling);
+ void computePageRectsWithPageSizeInternal(const FloatSize& pageSizeInPixels);
void collectLinkAndLinkedDestinations(Node*);
// Used to prevent misuses of begin() and end() (e.g., call end without begin).
« no previous file with comments | « no previous file | Source/core/page/PrintContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698