diff options
Diffstat (limited to 'printing/image_cairo.cc')
-rw-r--r-- | printing/image_cairo.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/printing/image_cairo.cc b/printing/image_cairo.cc new file mode 100644 index 0000000..d19d57e --- /dev/null +++ b/printing/image_cairo.cc @@ -0,0 +1,16 @@ +// Copyright (c) 2010 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/image.h" + +#include "base/logging.h" + +namespace printing { + +bool Image::LoadMetafile(const NativeMetafile& metafile) { + NOTIMPLEMENTED(); + return false; +} + +} // namespace printing |