diff options
Diffstat (limited to 'dbus/mock_object_proxy.cc')
-rw-r--r-- | dbus/mock_object_proxy.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dbus/mock_object_proxy.cc b/dbus/mock_object_proxy.cc new file mode 100644 index 0000000..d58a604 --- /dev/null +++ b/dbus/mock_object_proxy.cc @@ -0,0 +1,18 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "dbus/mock_object_proxy.h" + +namespace dbus { + +MockObjectProxy::MockObjectProxy(Bus* bus, + const std::string& service_name, + const std::string& object_path) + : ObjectProxy(bus, service_name, object_path) { +} + +MockObjectProxy::~MockObjectProxy() { +} + +} // namespace dbus |