| Index: chromeos/dbus/biod/biod_enroll_session_client.h | 
| diff --git a/chromeos/dbus/biod/biod_enroll_session_client.h b/chromeos/dbus/biod/biod_enroll_session_client.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..7116fb185cd2157fd250615a6f9e807aec49e771 | 
| --- /dev/null | 
| +++ b/chromeos/dbus/biod/biod_enroll_session_client.h | 
| @@ -0,0 +1,42 @@ | 
| +// 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_BIOD_BIOD_ENROLL_SESSION_CLIENT_H_ | 
| +#define CHROMEOS_DBUS_BIOD_BIOD_ENROLL_SESSION_CLIENT_H_ | 
| + | 
| +#include "base/callback.h" | 
| +#include "base/macros.h" | 
| +#include "chromeos/chromeos_export.h" | 
| +#include "chromeos/dbus/dbus_client.h" | 
| +#include "chromeos/dbus/dbus_client_implementation_type.h" | 
| + | 
| +namespace dbus { | 
| +class ObjectPath; | 
| +} | 
| + | 
| +namespace chromeos { | 
| + | 
| +// BiodEnrollSessionClient is used to communicate with a biod enroll session via | 
| +// dbus interface. | 
| +class CHROMEOS_EXPORT BiodEnrollSessionClient : public DBusClient { | 
| + public: | 
| +  ~BiodEnrollSessionClient() override; | 
| + | 
| +  // Cancels the enroll session at |enroll_session_path|. | 
| +  virtual void Cancel(const dbus::ObjectPath& enroll_session_path) = 0; | 
| + | 
| +  // Creates the instance. | 
| +  static BiodEnrollSessionClient* Create(DBusClientImplementationType type); | 
| + | 
| + protected: | 
| +  // Create() should be used instead. | 
| +  BiodEnrollSessionClient(); | 
| + | 
| + private: | 
| +  DISALLOW_COPY_AND_ASSIGN(BiodEnrollSessionClient); | 
| +}; | 
| + | 
| +}  // namespace chromeos | 
| + | 
| +#endif  // CHROMEOS_DBUS_BIOD_BIOD_ENROLL_SESSION_CLIENT_H_ | 
|  |