Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(840)

Unified Diff: chrome/browser/extensions/api/document_scan/document_scan_interface_chromeos.h

Issue 899523004: Move chrome.documentScan API to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated DEPS Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/document_scan/document_scan_interface_chromeos.h
diff --git a/chrome/browser/extensions/api/document_scan/document_scan_interface_chromeos.h b/chrome/browser/extensions/api/document_scan/document_scan_interface_chromeos.h
deleted file mode 100644
index 5c658a8aa30e582942fbb39306d1de6c5b2d8973..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/api/document_scan/document_scan_interface_chromeos.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_CHROMEOS_H_
-#define CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_CHROMEOS_H_
-
-#include "chrome/browser/extensions/api/document_scan/document_scan_interface.h"
-#include "chromeos/dbus/lorgnette_manager_client.h"
-
-namespace extensions {
-
-namespace api {
-
-class DocumentScanInterfaceChromeos : public DocumentScanInterface {
- public:
- DocumentScanInterfaceChromeos();
- ~DocumentScanInterfaceChromeos() override;
-
- void ListScanners(const ListScannersResultsCallback& callback) override;
- void Scan(const std::string& scanner_name,
- ScanMode mode,
- int resolution_dpi,
- const ScanResultsCallback& callback) override;
-
- private:
- friend class DocumentScanInterfaceChromeosTest;
-
- void OnScannerListReceived(
- const ListScannersResultsCallback& callback,
- bool succeeded,
- const chromeos::LorgnetteManagerClient::ScannerTable &scanners);
- void OnScanCompleted(const ScanResultsCallback &callback,
- bool succeeded,
- const std::string& image_data);
- chromeos::LorgnetteManagerClient* GetLorgnetteManagerClient();
-
- // Guaranteed to outlive |this|.
- chromeos::LorgnetteManagerClient* lorgnette_manager_client_;
-
- DISALLOW_COPY_AND_ASSIGN(DocumentScanInterfaceChromeos);
-};
-
-} // namespace api
-
-} // namespace extensions
-
-#endif // CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_DOCUMENT_SCAN_INTERFACE_CHROMEOS_H_

Powered by Google App Engine
This is Rietveld 408576698