Index: android_webview/java/src/org/chromium/android_webview/AwPdfExportAttributes.java |
diff --git a/android_webview/java/src/org/chromium/android_webview/AwPdfExportAttributes.java b/android_webview/java/src/org/chromium/android_webview/AwPdfExportAttributes.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4e78643f05c9e89fe647151cc005c4b3799b3c4a |
--- /dev/null |
+++ b/android_webview/java/src/org/chromium/android_webview/AwPdfExportAttributes.java |
@@ -0,0 +1,20 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package org.chromium.android_webview; |
+ |
+/** |
+ * The android_webview specific PDF export attributes. |
+ */ |
+public class AwPdfExportAttributes { |
joth
2013/11/21 19:38:03
Is this class even needed now? It's purpose was to
sgurun-gerrit only
2013/11/23 01:49:11
Done.
|
+ |
+ public int dpi; |
+ // For parameters below, units are in mils (1/1000 of inches). |
+ public int pageWidth; |
+ public int pageHeight; |
+ public int leftMargin; |
+ public int rightMargin; |
+ public int topMargin; |
+ public int bottomMargin; |
+}; |