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

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

Issue 899523004: Move chrome.documentScan API to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698