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

Side by Side Diff: printing/printed_document_mac.cc

Issue 568633002: Extracted MetafilePlayer interface from printing::MetafilePlayer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@no_expose
Patch Set: Thu Sep 11 22:54:16 PDT 2014 Created 6 years, 3 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
« no previous file with comments | « printing/printed_document_linux.cc ('k') | printing/printed_page.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "printing/printed_document.h" 5 #include "printing/printed_document.h"
6 6
7 #import <ApplicationServices/ApplicationServices.h> 7 #import <ApplicationServices/ApplicationServices.h>
8 #import <CoreFoundation/CoreFoundation.h> 8 #import <CoreFoundation/CoreFoundation.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 11 matching lines...) Expand all
22 DCHECK(&page == mutable_.pages_.find(page.page_number() - 1)->second.get()); 22 DCHECK(&page == mutable_.pages_.find(page.page_number() - 1)->second.get());
23 } 23 }
24 #endif 24 #endif
25 25
26 DCHECK(context); 26 DCHECK(context);
27 27
28 const PageSetup& page_setup(immutable_.settings_.page_setup_device_units()); 28 const PageSetup& page_setup(immutable_.settings_.page_setup_device_units());
29 gfx::Rect content_area; 29 gfx::Rect content_area;
30 page.GetCenteredPageContentRect(page_setup.physical_size(), &content_area); 30 page.GetCenteredPageContentRect(page_setup.physical_size(), &content_area);
31 31
32 const Metafile* metafile = page.metafile(); 32 const MetafilePlayer* metafile = page.metafile();
33 // Each Metafile is a one-page PDF, and pages use 1-based indexing. 33 // Each Metafile is a one-page PDF, and pages use 1-based indexing.
34 const int page_number = 1; 34 const int page_number = 1;
35 struct Metafile::MacRenderPageParams params; 35 struct Metafile::MacRenderPageParams params;
36 params.autorotate = true; 36 params.autorotate = true;
37 metafile->RenderPage(page_number, context, content_area.ToCGRect(), params); 37 metafile->RenderPage(page_number, context, content_area.ToCGRect(), params);
38 } 38 }
39 39
40 } // namespace printing 40 } // namespace printing
OLDNEW
« no previous file with comments | « printing/printed_document_linux.cc ('k') | printing/printed_page.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698