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

Side by Side Diff: services/device/fingerprint/fingerprint_impl_default.cc

Issue 2664353002: Host fingerprint mojo service within the device service. (Closed)
Patch Set: comments Created 3 years, 9 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 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
OLDNEW
« no previous file with comments | « services/device/fingerprint/fingerprint_impl_chromeos_unittest.cc ('k') | services/device/manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698