summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/cloud_print/print_system_win.cc2
-rw-r--r--chrome/service/service_utility_process_host.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc
index f5e615e..7d252be 100644
--- a/chrome/service/cloud_print/print_system_win.cc
+++ b/chrome/service/cloud_print/print_system_win.cc
@@ -336,7 +336,7 @@ class JobSpoolerWin : public PrintSystem::JobSpooler {
// ServiceUtilityProcessHost::Client implementation.
virtual void OnRenderPDFPagesToMetafileSucceeded(
- const printing::Emf& metafile,
+ const printing::MetafilePlayer& metafile,
int highest_rendered_page_number,
double scale_factor) OVERRIDE {
PreparePageDCForPrinting(printer_dc_.Get(), scale_factor);
diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h
index ac37bdb..9ad97dd 100644
--- a/chrome/service/service_utility_process_host.h
+++ b/chrome/service/service_utility_process_host.h
@@ -30,7 +30,7 @@ class ChildProcessHost;
}
namespace printing {
-class Emf;
+class MetafilePlayer;
struct PageRange;
struct PrinterCapsAndDefaults;
struct PrinterSemanticCapsAndDefaults;
@@ -54,7 +54,7 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
// Called when at least one page in the specified PDF has been rendered
// successfully into |metafile|.
virtual void OnRenderPDFPagesToMetafileSucceeded(
- const printing::Emf& metafile,
+ const printing::MetafilePlayer& metafile,
int highest_rendered_page_number,
double scale_factor) {}
// Called when no page in the passed in PDF could be rendered.