make use of media_use_ffmpeg in BUILD.gn
[chromium-blink-merge.git] / extensions / browser / api / document_scan / document_scan_interface_nonchromeos.cc
blob15878de9bc0bd8fd96b0e5e8fa3d258455441436
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "extensions/browser/api/document_scan/document_scan_interface.h"
7 namespace {
9 const char kScanFunctionNotImplementedError[] = "Scan function not implemented";
11 } // namespace
13 namespace extensions {
15 namespace api {
17 class DocumentScanInterfaceImpl : public DocumentScanInterface {
18 public:
19 DocumentScanInterfaceImpl() {}
20 ~DocumentScanInterfaceImpl() override {}
22 void ListScanners(const ListScannersResultsCallback& callback) override {
23 callback.Run(std::vector<ScannerDescription>(), "");
25 void Scan(const std::string& scanner_name,
26 ScanMode mode,
27 int resolution_dpi,
28 const ScanResultsCallback& callback) override {
29 callback.Run("", "", kScanFunctionNotImplementedError);
32 private:
33 DISALLOW_COPY_AND_ASSIGN(DocumentScanInterfaceImpl);
36 // static
37 DocumentScanInterface* DocumentScanInterface::CreateInstance() {
38 return new DocumentScanInterfaceImpl();
41 } // namespace api
43 } // namespace extensions