| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 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 #include "services/device/fingerprint/fingerprint.h" | |
| 6 #include "services/device/public/interfaces/fingerprint.mojom.h" | |
| 7 | |
| 8 namespace device { | |
| 9 | |
| 10 namespace { | |
| 11 | |
| 12 // An empty implementation of Fingerprint. | |
| 13 // Used on platforms where a real implementation is not available. | |
| 14 class FingerprintImplDefault : public Fingerprint { | |
| 15 public: | |
| 16 explicit FingerprintImplDefault() {} | |
| 17 ~FingerprintImplDefault() {} | |
| 18 }; | |
| 19 | |
| 20 } // namespace | |
| 21 | |
| 22 // static | |
| 23 void Fingerprint::Create(device::mojom::FingerprintRequest request) { | |
| 24 // Do nothing. | |
| 25 } | |
| 26 | |
| 27 } // namespace device | |
| OLD | NEW |