[email protected] | 216ed0b | 2012-02-14 21:29:06 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 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_exported_object.h" | ||||
6 | |||||
7 | namespace dbus { | ||||
8 | |||||
9 | MockExportedObject::MockExportedObject(Bus* bus, | ||||
[email protected] | 216ed0b | 2012-02-14 21:29:06 | [diff] [blame] | 10 | const ObjectPath& object_path) |
[email protected] | 15e7b16 | 2012-03-10 01:12:52 | [diff] [blame] | 11 | : ExportedObject(bus, object_path) { |
[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 | MockExportedObject::~MockExportedObject() = default; |
[email protected] | b8ae051 | 2011-08-25 05:18:29 | [diff] [blame] | 15 | |
16 | } // namespace dbus |