OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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_system_clock_client.h" |
| 6 |
| 7 namespace chromeos { |
| 8 |
| 9 FakeSystemClockClient::FakeSystemClockClient() { |
| 10 } |
| 11 |
| 12 FakeSystemClockClient::~FakeSystemClockClient() { |
| 13 } |
| 14 |
| 15 void FakeSystemClockClient::AddObserver(Observer* observer) { |
| 16 } |
| 17 |
| 18 void FakeSystemClockClient::RemoveObserver(Observer* observer) { |
| 19 } |
| 20 |
| 21 bool FakeSystemClockClient::HasObserver(Observer* observer) { |
| 22 return false; |
| 23 } |
| 24 |
| 25 } // namespace chromeos |
OLD | NEW |