OLD | NEW |
(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 "chromeos/dbus/fake_biod_auth_session_client.h" |
| 6 |
| 7 namespace chromeos { |
| 8 |
| 9 FakeBiodAuthSessionClient::FakeBiodAuthSessionClient() |
| 10 : weak_ptr_factory_(this) {} |
| 11 |
| 12 FakeBiodAuthSessionClient::~FakeBiodAuthSessionClient() {} |
| 13 |
| 14 void FakeBiodAuthSessionClient::Init(dbus::Bus* bus) {} |
| 15 |
| 16 void FakeBiodAuthSessionClient::End(const dbus::ObjectPath& auth_session_path) { |
| 17 } |
| 18 |
| 19 } // namespace chromeos |
OLD | NEW |