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

Unified Diff: chrome/browser/printing/pdf_to_emf_converter.h

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 16:10:13 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/printing/pdf_to_emf_converter.h
diff --git a/chrome/browser/printing/pdf_to_emf_converter.h b/chrome/browser/printing/pdf_to_emf_converter.h
index 0ad5a1a152cd748d7565c06ea73c8102bfec6110..c005b8c119667ab6753ab5f9552a6ae3c355bb14 100644
--- a/chrome/browser/printing/pdf_to_emf_converter.h
+++ b/chrome/browser/printing/pdf_to_emf_converter.h
@@ -14,19 +14,17 @@ class FilePath;
}
namespace printing {
-class PdfRenderSettings;
-}
-namespace printing {
-
-class Metafile;
+class MetafilePlayer;
+class PdfRenderSettings;
class PdfToEmfConverter {
public:
// Callback for when the PDF is converted to an EMF.
// Takes ownership of metafiles.
typedef base::Callback<
- void(double /*scale_factor*/, ScopedVector<Metafile>* /*emf_files*/)>
+ void(double /*scale_factor*/,
+ ScopedVector<MetafilePlayer>* /*emf_files*/)>
ResultCallback;
virtual ~PdfToEmfConverter() {}
« no previous file with comments | « no previous file | chrome/browser/printing/pdf_to_emf_converter.cc » ('j') | chrome/service/service_utility_process_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698