// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "mojo/public/cpp/bindings/pending_receiver.h" #include "services/device/fingerprint/fingerprint.h" #include "services/device/public/mojom/fingerprint.mojom.h" namespace device { namespace { // An empty implementation of Fingerprint. // Used on platforms where a real implementation is not available. class FingerprintDefault : public Fingerprint { … }; } // namespace // static void Fingerprint::Create( mojo::PendingReceiver<device::mojom::Fingerprint> receiver) { … } } // namespace device