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

Side by Side Diff: chrome/browser/extensions/api/document_scan/mock_document_scan_interface.h

Issue 286933006: Implement a JavaScript API for document scanning (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Starting over. This used to be 286933006 Created 6 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERFACE _H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERFACE _H_
7
8 #include <string>
9
10 #include <gmock/gmock.h>
11
12 #include "chrome/browser/extensions/api/document_scan/document_scan_interface.h"
13
14 namespace extensions {
15
16 namespace api {
17
18 class MockDocumentScanInterface : public DocumentScanInterface {
19 public:
20 MockDocumentScanInterface();
21 virtual ~MockDocumentScanInterface();
22
23 MOCK_METHOD4(Scan, void(const std::string& scanner_name,
24 ScanMode mode,
25 int resolution_dpi,
26 const ScanResultsCallback& callback));
27 MOCK_METHOD1(ListScanners, void(const ListScannersResultsCallback& callback));
28 MOCK_CONST_METHOD0(GetImageMimeType, std::string());
29 };
30
31 } // namespace api
32
33 } // namespace extensions
34
35 #endif // CHROME_BROWSER_EXTENSIONS_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERF ACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698