blob: 7b0798f16ed1f65f64afbd294ca511b647d36c2f [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// 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 {
public:
explicit FingerprintDefault() {}
~FingerprintDefault() {}
};
} // namespace
// static
void Fingerprint::Create(
mojo::PendingReceiver<device::mojom::Fingerprint> receiver) {
// Do nothing.
}
} // namespace device