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

Unified Diff: printing/native_metafile_factory.cc

Issue 6826027: Connect the right metafiles for print preview on Linux and Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile problems Created 9 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 | « printing/native_metafile_factory.h ('k') | printing/native_metafile_skia_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/native_metafile_factory.cc
diff --git a/printing/native_metafile_factory.cc b/printing/native_metafile_factory.cc
deleted file mode 100644
index 5db823ec4badf82de02be6997b6adbbef7498eb7..0000000000000000000000000000000000000000
--- a/printing/native_metafile_factory.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "printing/native_metafile_factory.h"
-
-#include "base/memory/scoped_ptr.h"
-
-#if defined(OS_WIN)
-#include "printing/emf_win.h"
-#elif defined(OS_MACOSX)
-#include "printing/pdf_metafile_cg_mac.h"
-#elif defined(OS_POSIX)
-#include "printing/pdf_metafile_cairo_linux.h"
-#endif
-
-namespace printing {
-
-// static
-NativeMetafile* NativeMetafileFactory::Create() {
- scoped_ptr<NativeMetafile> metafile(CreateNewMetafile());
- if (!metafile->Init())
- return NULL;
- return metafile.release();
-}
-
-// static
-NativeMetafile* NativeMetafileFactory::CreateFromData(
- const void* src_buffer, uint32 src_buffer_size) {
- scoped_ptr<NativeMetafile> metafile(CreateNewMetafile());
- if (!metafile->InitFromData(src_buffer, src_buffer_size))
- return NULL;
- return metafile.release();
-}
-
-// static
-NativeMetafile* NativeMetafileFactory::CreateNewMetafile(){
-#if defined(OS_WIN)
- return new printing::Emf;
-#elif defined(OS_MACOSX)
- return new printing::PdfMetafileCg;
-#elif defined(OS_POSIX)
- return new printing::PdfMetafileCairo;
-#endif
-}
-
-} // namespace printing
« no previous file with comments | « printing/native_metafile_factory.h ('k') | printing/native_metafile_skia_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698