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

Unified Diff: chromeos/dbus/fake_biod_auth_session_client.h

Issue 2578323004: cros: Fake implementation of DBUS biometrics client. (Closed)
Patch Set: Rebased to master. 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 side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/fake_biod_auth_session_client.h
diff --git a/chromeos/dbus/fake_biod_auth_session_client.h b/chromeos/dbus/fake_biod_auth_session_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..fcf7529afa6453ee091605d1bbfaeaf8174bb944
--- /dev/null
+++ b/chromeos/dbus/fake_biod_auth_session_client.h
@@ -0,0 +1,34 @@
+// 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.
+
+#ifndef CHROMEOS_DBUS_FAKE_BIOD_AUTH_SESSION_CLIENT_H_
+#define CHROMEOS_DBUS_FAKE_BIOD_AUTH_SESSION_CLIENT_H_
+
+#include "base/macros.h"
+#include "base/memory/weak_ptr.h"
+#include "chromeos/chromeos_export.h"
+#include "chromeos/dbus/biod_auth_session_client.h"
+
+namespace chromeos {
+
+class CHROMEOS_EXPORT FakeBiodAuthSessionClient : public BiodAuthSessionClient {
+ public:
+ FakeBiodAuthSessionClient();
+ ~FakeBiodAuthSessionClient() override;
+
+ // BiodAuthSessionClient overrides
+ void Init(dbus::Bus* bus) override;
+ void End(const dbus::ObjectPath& auth_session_path) override;
+
+ private:
+ // Note: This should remain the last member so it'll be destroyed and
+ // invalidate its weak pointers before any other members are destroyed.
+ base::WeakPtrFactory<FakeBiodAuthSessionClient> weak_ptr_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(FakeBiodAuthSessionClient);
+};
+
+} // namespace chromeos
+
+#endif // CHROMEOS_DBUS_FAKE_BIOD_AUTH_SESSION_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698