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

Side by Side Diff: printing/native_metafile_factory.cc

Issue 6696076: Adding CreateFromData to NativeMetafileFactory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebasing Created 9 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « printing/native_metafile_factory.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "printing/native_metafile_factory.h" 5 #include "printing/native_metafile_factory.h"
6 6
7 #include "base/scoped_ptr.h"
8
7 #if defined(OS_WIN) 9 #if defined(OS_WIN)
8 #include "printing/emf_win.h" 10 #include "printing/emf_win.h"
9 #elif defined(OS_MACOSX) 11 #elif defined(OS_MACOSX)
10 #include "printing/pdf_metafile_mac.h" 12 #include "printing/pdf_metafile_mac.h"
11 #elif defined(OS_POSIX) 13 #elif defined(OS_POSIX)
12 #include "printing/pdf_ps_metafile_cairo.h" 14 #include "printing/pdf_ps_metafile_cairo.h"
13 #endif 15 #endif
14 16
15 namespace printing { 17 namespace printing {
16 18
17 // static 19 // static
18 printing::NativeMetafile* NativeMetafileFactory::Create() { 20 NativeMetafile* NativeMetafileFactory::Create() {
21 scoped_ptr<NativeMetafile> metafile(CreateNewMetafile());
22 if (!metafile->Init())
23 return NULL;
24 return metafile.release();
25 }
26
27 // static
28 NativeMetafile* NativeMetafileFactory::CreateFromData(
29 const void* src_buffer, uint32 src_buffer_size) {
30 scoped_ptr<NativeMetafile> metafile(CreateNewMetafile());
31 if (!metafile->InitFromData(src_buffer, src_buffer_size))
32 return NULL;
33 return metafile.release();
34 }
35
36 // static
37 NativeMetafile* NativeMetafileFactory::CreateNewMetafile(){
19 #if defined(OS_WIN) 38 #if defined(OS_WIN)
20 return new printing::Emf; 39 return new printing::Emf;
21 #elif defined(OS_MACOSX) 40 #elif defined(OS_MACOSX)
22 return new printing::PdfMetafile; 41 return new printing::PdfMetafile;
23 #elif defined(OS_POSIX) 42 #elif defined(OS_POSIX)
24 return new printing::PdfPsMetafile; 43 return new printing::PdfPsMetafile;
25 #endif 44 #endif
26 } 45 }
27 46
28 } // namespace printing 47 } // namespace printing
OLDNEW
« no previous file with comments | « printing/native_metafile_factory.h ('k') | webkit/plugins/ppapi/ppapi_plugin_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698