/external/chromium_org/printing/ |
metafile_impl.h | 17 typedef Emf NativeMetafile;
|
emf_win.h | 33 // Simple wrapper class that manage an EMF data stream and its virtual HDC. 34 class PRINTING_EXPORT Emf : public Metafile { 41 // it in a EMF data stream. 42 Emf(); 43 virtual ~Emf(); 49 // Initializes the Emf with the data in |metafile_path|. 73 // Saves the EMF data to a file as-is. It is recommended to use the .emf file 92 virtual HENHMETAFILE emf() const OVERRIDE { 101 Emf* RasterizeMetafile(int raster_area_in_pixels) const [all...] |
emf_win.cc | 168 Emf::Emf() : emf_(NULL), hdc_(NULL), page_count_(0) { 171 Emf::~Emf() { 177 bool Emf::InitToFile(const base::FilePath& metafile_path) { 184 bool Emf::InitFromFile(const base::FilePath& metafile_path) { 191 bool Emf::Init() { 198 bool Emf::InitFromData(const void* src_buffer, uint32 src_buffer_size) { 205 bool Emf::FinishDocument() { 213 bool Emf::Playback(HDC hdc, const RECT* rect) const 578 Enumerator& emf = *reinterpret_cast<Enumerator*>(param); local [all...] |
emf_win_unittest.cc | 53 Emf emf; local 54 EXPECT_TRUE(emf.Init()); 55 EXPECT_TRUE(emf.context() != NULL); 56 // An empty EMF is invalid, so we put at least a rectangle in it. 57 ::Rectangle(emf.context(), 10, 10, 190, 190); 58 EXPECT_TRUE(emf.FinishDocument()); 59 size = emf.GetDataSize(); 61 EXPECT_TRUE(emf.GetDataAsVector(&data)); 66 Emf emf local 96 Emf emf; local 135 Emf emf; local 157 Emf emf; local 180 Emf emf; local 198 Emf emf; local 206 Emf emf; local [all...] |
/external/chromium_org/chrome/service/ |
service_utility_process_host.h | 34 class Emf; 57 const printing::Emf& metafile,
|
service_utility_process_host.cc | 322 printing::Emf metafile;
|
/external/chromium_org/chrome/service/cloud_print/ |
print_system_xps_win.cc | 222 const printing::Emf& metafile,
|
/external/chromium_org/chrome/utility/ |
chrome_content_utility_client.cc | 588 printing::Emf metafile; 608 // The underlying metafile is of type Emf and ignores the arguments passed
|