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

Side by Side 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 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ 5 #ifndef CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_
6 #define CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ 6 #define CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/memory/ref_counted_memory.h" 9 #include "base/memory/ref_counted_memory.h"
10 #include "base/memory/scoped_vector.h" 10 #include "base/memory/scoped_vector.h"
11 11
12 namespace base { 12 namespace base {
13 class FilePath; 13 class FilePath;
14 } 14 }
15 15
16 namespace printing { 16 namespace printing {
17 class PdfRenderSettings;
18 }
19
20 namespace printing {
21 17
22 class Metafile; 18 class MetafilePlayer;
19 class PdfRenderSettings;
23 20
24 class PdfToEmfConverter { 21 class PdfToEmfConverter {
25 public: 22 public:
26 // Callback for when the PDF is converted to an EMF. 23 // Callback for when the PDF is converted to an EMF.
27 // Takes ownership of metafiles. 24 // Takes ownership of metafiles.
28 typedef base::Callback< 25 typedef base::Callback<void(double /*scale_factor*/,
29 void(double /*scale_factor*/, ScopedVector<Metafile>* /*emf_files*/)> 26 ScopedVector<MetafilePlayer>* /*emf_files*/)>
30 ResultCallback; 27 ResultCallback;
31 virtual ~PdfToEmfConverter() {} 28 virtual ~PdfToEmfConverter() {}
32 29
33 static scoped_ptr<PdfToEmfConverter> CreateDefault(); 30 static scoped_ptr<PdfToEmfConverter> CreateDefault();
34 31
35 virtual void Start(base::RefCountedMemory* data, 32 virtual void Start(base::RefCountedMemory* data,
36 const printing::PdfRenderSettings& conversion_settings, 33 const printing::PdfRenderSettings& conversion_settings,
37 const ResultCallback& callback) = 0; 34 const ResultCallback& callback) = 0;
38 }; 35 };
39 36
40 } // namespace printing 37 } // namespace printing
41 38
42 #endif // CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ 39 #endif // CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_
OLDNEW
« no previous file with comments | « android_webview/renderer/print_web_view_helper_linux.cc ('k') | chrome/browser/printing/pdf_to_emf_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698