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

Side by Side Diff: printing/print_settings.h

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « printing/pdf_metafile_mac_unittest.cc ('k') | printing/printed_document.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PRINTING_PRINT_SETTINGS_H_ 5 #ifndef PRINTING_PRINT_SETTINGS_H_
6 #define PRINTING_PRINT_SETTINGS_H_ 6 #define PRINTING_PRINT_SETTINGS_H_
7 7
8 #include "gfx/rect.h"
9 #include "printing/page_overlays.h" 8 #include "printing/page_overlays.h"
10 #include "printing/page_range.h" 9 #include "printing/page_range.h"
11 #include "printing/page_setup.h" 10 #include "printing/page_setup.h"
11 #include "ui/gfx/rect.h"
12 12
13 namespace printing { 13 namespace printing {
14 14
15 // OS-independent print settings. 15 // OS-independent print settings.
16 class PrintSettings { 16 class PrintSettings {
17 public: 17 public:
18 PrintSettings(); 18 PrintSettings();
19 ~PrintSettings(); 19 ~PrintSettings();
20 20
21 // Reinitialize the settings to the default values. 21 // Reinitialize the settings to the default values.
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 // Is the orientation landscape or portrait. 113 // Is the orientation landscape or portrait.
114 bool landscape_; 114 bool landscape_;
115 115
116 // True if this printer supports AlphaBlend. 116 // True if this printer supports AlphaBlend.
117 bool supports_alpha_blend_; 117 bool supports_alpha_blend_;
118 }; 118 };
119 119
120 } // namespace printing 120 } // namespace printing
121 121
122 #endif // PRINTING_PRINT_SETTINGS_H_ 122 #endif // PRINTING_PRINT_SETTINGS_H_
OLDNEW
« no previous file with comments | « printing/pdf_metafile_mac_unittest.cc ('k') | printing/printed_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698