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

Unified Diff: android_webview/java/src/org/chromium/android_webview/AwPdfExportAttributes.java

Issue 54963005: Upstream printing changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address code review Created 7 years, 1 month 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
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;
+};

Powered by Google App Engine
This is Rietveld 408576698