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

Unified Diff: printing/pwg_raster_settings.h

Issue 211843004: Tunnel PWGRasterConfig capability to the ticket and to the utility process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | « chrome/utility/chrome_content_utility_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/pwg_raster_settings.h
diff --git a/printing/pwg_raster_settings.h b/printing/pwg_raster_settings.h
new file mode 100644
index 0000000000000000000000000000000000000000..54593bb272f8dbaae7bf1083087af050815c6f0d
--- /dev/null
+++ b/printing/pwg_raster_settings.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2011 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.
+
+#ifndef PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
+#define PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
+
+#include "base/tuple.h"
+#include "ipc/ipc_param_traits.h"
+#include "printing/printing_export.h"
+#include "ui/gfx/rect.h"
+
+namespace printing {
+
+enum PwgRasterTransformType {
+ TRANSFORM_NORMAL,
+ TRANSFORM_ROTATE_180,
+ TRANSFORM_FLIP_HORIZONTAL,
+ TRANSFORM_FLIP_VERTICAL
+};
+
+struct PwgRasterSettings {
+ // How to transform odd-numbered pages.
+ PwgRasterTransformType odd_page_transform;
+ // Rotate all pages (on top of odd-numbered page transform).
+ bool rotate_all_pages;
+ // Rasterize pages in reverse order.
+ bool reverse_page_order;
+};
+
+} // namespace printing
+
+#endif // PRINTING_BITMAP_TRANSFORM_SETTINGS_H_
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698