OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
James Cook
2015/02/05 19:02:59
Is this file a strict move? If so you might need t
babu
2015/02/05 21:34:03
Done. Used 40.
| |
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 EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERFACE_H_ | |
6 #define EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERFACE_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include <gmock/gmock.h> | |
11 | |
12 #include "extensions/browser/api/document_scan/document_scan_interface.h" | |
13 | |
14 namespace extensions { | |
15 | |
16 namespace core_api { | |
17 | |
18 class MockDocumentScanInterface : public DocumentScanInterface { | |
19 public: | |
20 MockDocumentScanInterface(); | |
21 ~MockDocumentScanInterface() override; | |
22 | |
23 MOCK_METHOD4(Scan, | |
24 void(const std::string& scanner_name, | |
25 ScanMode mode, | |
26 int resolution_dpi, | |
27 const ScanResultsCallback& callback)); | |
28 MOCK_METHOD1(ListScanners, void(const ListScannersResultsCallback& callback)); | |
29 MOCK_CONST_METHOD0(GetImageMimeType, std::string()); | |
30 }; | |
31 | |
32 } // namespace core_api | |
33 | |
34 } // namespace extensions | |
35 | |
36 #endif // EXTENSIONS_BROWSER_API_DOCUMENT_SCAN_MOCK_DOCUMENT_SCAN_INTERFACE_H_ | |
OLD | NEW |