summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/mock_printer.cc
diff options
context:
space:
mode:
authorhamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-28 09:46:00 +0000
committerhamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-28 09:46:00 +0000
commit4ebf5d12a9da2fe381b5bc6e53eba76a2abed8d4 (patch)
tree8709d2a1c9b6afcff614c4d58b774cb2ba89ff31 /chrome/renderer/mock_printer.cc
parentfae8f2508f0927d4099fa78be85f089bae55575c (diff)
downloadchromium_src-4ebf5d12a9da2fe381b5bc6e53eba76a2abed8d4.zip
chromium_src-4ebf5d12a9da2fe381b5bc6e53eba76a2abed8d4.tar.gz
chromium_src-4ebf5d12a9da2fe381b5bc6e53eba76a2abed8d4.tar.bz2
Create constant variables kPointsPerInch and kPixelsPerInch and conversion functions.
BUG=47277 TEST=units_unittest.cc Review URL: http://codereview.chromium.org/2877001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50968 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/mock_printer.cc')
-rw-r--r--chrome/renderer/mock_printer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/mock_printer.cc b/chrome/renderer/mock_printer.cc
index 235e056..78b7a78 100644
--- a/chrome/renderer/mock_printer.cc
+++ b/chrome/renderer/mock_printer.cc
@@ -9,12 +9,13 @@
#include "base/shared_memory.h"
#include "chrome/common/render_messages.h"
#include "ipc/ipc_message_utils.h"
+#include "printing/units.h"
#include "testing/gtest/include/gtest/gtest.h"
MockPrinter::MockPrinter()
: printable_width_(0),
printable_height_(0),
- dpi_(72),
+ dpi_(printing::kPointsPerInch),
max_shrink_(2.0),
min_shrink_(1.25),
desired_dpi_(72),
@@ -195,4 +196,3 @@ bool MockPrinter::SaveBitmap(
int MockPrinter::CreateDocumentCookie() {
return ++current_document_cookie_;
}
-