blob: f8a670344165f9f9dacd2f9c85a0a42e305d1ee3 [file] [log] [blame]
keybuk@google.combf4649a2012-02-15 06:29:06 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
satorux@chromium.orgf77861f2011-08-25 14:18:29 +09002// 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
7namespace dbus {
8
9MockExportedObject::MockExportedObject(Bus* bus,
keybuk@google.combf4649a2012-02-15 06:29:06 +090010 const ObjectPath& object_path)
keybuk@chromium.org9cb73f02012-03-10 10:12:52 +090011 : ExportedObject(bus, object_path) {
satorux@chromium.orgf77861f2011-08-25 14:18:29 +090012}
13
Chris Watkins635e8902017-11-29 16:44:11 +090014MockExportedObject::~MockExportedObject() = default;
satorux@chromium.orgf77861f2011-08-25 14:18:29 +090015
16} // namespace dbus