Index: printing/native_metafile.h |
diff --git a/printing/native_metafile.h b/printing/native_metafile.h |
index be79d5bea921e1a8c96721e29fdfc113dce5461c..e30a43e1cdd42011ce91ed592a071aa6a0c7a169 100644 |
--- a/printing/native_metafile.h |
+++ b/printing/native_metafile.h |
@@ -26,9 +26,14 @@ typedef Emf NativeMetafile; |
#elif defined(OS_MACOSX) |
-// TODO(port): Printing using PDF? |
+// TODO(port): Printing using CG/PDF? |
// The mock class is here so we can compile. |
-class NativeMetafile {}; |
+class NativeMetafile { |
+ public: |
+ int GetDataSize() const { return 0; } |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(NativeMetafile); |
+}; |
#elif defined(OS_LINUX) |