| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/macros.h" |
| 5 #include "extensions/browser/api/document_scan/document_scan_interface.h" | 6 #include "extensions/browser/api/document_scan/document_scan_interface.h" |
| 6 | 7 |
| 7 namespace { | 8 namespace { |
| 8 | 9 |
| 9 const char kScanFunctionNotImplementedError[] = "Scan function not implemented"; | 10 const char kScanFunctionNotImplementedError[] = "Scan function not implemented"; |
| 10 | 11 |
| 11 } // namespace | 12 } // namespace |
| 12 | 13 |
| 13 namespace extensions { | 14 namespace extensions { |
| 14 | 15 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 34 }; | 35 }; |
| 35 | 36 |
| 36 // static | 37 // static |
| 37 DocumentScanInterface* DocumentScanInterface::CreateInstance() { | 38 DocumentScanInterface* DocumentScanInterface::CreateInstance() { |
| 38 return new DocumentScanInterfaceImpl(); | 39 return new DocumentScanInterfaceImpl(); |
| 39 } | 40 } |
| 40 | 41 |
| 41 } // namespace api | 42 } // namespace api |
| 42 | 43 |
| 43 } // namespace extensions | 44 } // namespace extensions |
| OLD | NEW |