blob: 7e26f01ba5c65f6a767f6deabc2de1ab8c41c525 [file] [log] [blame]
adamk@chromium.org35c0eef2012-02-11 06:45:23 +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_object_proxy.h"
6
7namespace dbus {
8
9MockObjectProxy::MockObjectProxy(Bus* bus,
10 const std::string& service_name,
keybuk@google.combf4649a2012-02-15 06:29:06 +090011 const ObjectPath& object_path)
adamk@chromium.org35c0eef2012-02-11 06:45:23 +090012 : ObjectProxy(bus, service_name, object_path, DEFAULT_OPTIONS) {
satorux@chromium.orgf77861f2011-08-25 14:18:29 +090013}
14
15MockObjectProxy::~MockObjectProxy() {
16}
17
18} // namespace dbus