Index: chrome/browser/local_discovery/pwg_raster_converter.cc |
diff --git a/chrome/browser/local_discovery/pwg_raster_converter.cc b/chrome/browser/local_discovery/pwg_raster_converter.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a26353747ba958e674b153044d4bbde1381a34d4 |
--- /dev/null |
+++ b/chrome/browser/local_discovery/pwg_raster_converter.cc |
@@ -0,0 +1,35 @@ |
+// Copyright 2013 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 "chrome/browser/local_discovery/pwg_raster_converter.h" |
+ |
+namespace local_discovery { |
+ |
+class PWGRasterConverterImpl : public PWGRasterConverter { |
+ public: |
+ PWGRasterConverterImpl(); |
+ |
+ virtual ~PWGRasterConverterImpl(); |
+ |
+ virtual void Start(base::RefCountedBytes* data, |
+ const ResultCallback& callback) OVERRIDE; |
+}; |
+ |
+// static |
+scoped_ptr<PWGRasterConverter> PWGRasterConverter::CreateDefault() { |
+ return scoped_ptr<PWGRasterConverter>(new PWGRasterConverterImpl()); |
+} |
+ |
+PWGRasterConverterImpl::PWGRasterConverterImpl() { |
+} |
+ |
+PWGRasterConverterImpl::~PWGRasterConverterImpl() { |
+} |
+ |
+void PWGRasterConverterImpl::Start(base::RefCountedBytes* data, |
+ const ResultCallback& callback) { |
+ NOTIMPLEMENTED(); |
+} |
+ |
+} // namespace local_discovery |