[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 1 | // Copyright (c) 2011 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 "dbus/mock_bus.h" | ||||
6 | |||||
[email protected] | 200328a | 2013-02-20 01:36:53 | [diff] [blame] | 7 | #include "base/location.h" |
8 | |||||
[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 9 | namespace dbus { |
10 | |||||
[email protected] | 200328a | 2013-02-20 01:36:53 | [diff] [blame] | 11 | MockBus::MockBus(const Bus::Options& options) : Bus(options) { |
[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 12 | } |
13 | |||||
Chris Watkins | 3740aae | 2017-11-29 07:44:11 | [diff] [blame] | 14 | MockBus::~MockBus() = default; |
[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 15 | |
16 | } // namespace dbus |