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

Unified Diff: chrome/service/service_utility_process_host.h

Issue 2812263002: clean up printing::Image and printing::Metafile (Closed)
Patch Set: definition matches declaration Created 3 years, 8 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/service/cloud_print/print_system_win.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_utility_process_host.h
diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h
index 7b13f105105f73cced8e6cf8480c367d56d628fe..d0bd273c0cb57544a9bf3557d1752c6474783c55 100644
--- a/chrome/service/service_utility_process_host.h
+++ b/chrome/service/service_utility_process_host.h
@@ -27,7 +27,6 @@ class ChildProcessHost;
}
namespace printing {
-class MetafilePlayer;
struct PdfRenderSettings;
struct PrinterCapsAndDefaults;
struct PrinterSemanticCapsAndDefaults;
@@ -48,9 +47,9 @@ class ServiceUtilityProcessHost : public content::ChildProcessHostDelegate {
// Called when the child process died before a reply was receieved.
virtual void OnChildDied() {}
- virtual void OnRenderPDFPagesToMetafilePageDone(
- float scale_factor,
- const printing::MetafilePlayer& emf) {}
+ virtual bool OnRenderPDFPagesToMetafilePageDone(
+ const std::vector<char>& emf_data,
+ float scale_factor);
// Called when at all pages in the PDF has been rendered.
virtual void OnRenderPDFPagesToMetafileDone(bool success) {}
« no previous file with comments | « chrome/service/cloud_print/print_system_win.cc ('k') | chrome/service/service_utility_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698