summaryrefslogtreecommitdiffstats
path: root/printing
diff options
context:
space:
mode:
Diffstat (limited to 'printing')
-rw-r--r--printing/image_aura.cc16
-rw-r--r--printing/printing.gyp1
2 files changed, 17 insertions, 0 deletions
diff --git a/printing/image_aura.cc b/printing/image_aura.cc
new file mode 100644
index 0000000..694fd7d
--- /dev/null
+++ b/printing/image_aura.cc
@@ -0,0 +1,16 @@
+// 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/image.h"
+
+#include "base/logging.h"
+
+namespace printing {
+
+bool Image::LoadMetafile(const Metafile& metafile) {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+} // namespace printing
diff --git a/printing/printing.gyp b/printing/printing.gyp
index 256a144..e444504 100644
--- a/printing/printing.gyp
+++ b/printing/printing.gyp
@@ -35,6 +35,7 @@
'emf_win.cc',
'emf_win.h',
'image.cc',
+ 'image_aura.cc',
'image_cairo.cc',
'image_mac.cc',
'image_win.cc',