blob: a7186bb73c13c463189f48585d6768592e15ff20 [file] [log] [blame]
[email protected]20bed012012-02-10 21:45:231// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]b8ae0512011-08-25 05:18:292// 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,
11 const std::string& object_path)
[email protected]20bed012012-02-10 21:45:2312 : ObjectProxy(bus, service_name, object_path, DEFAULT_OPTIONS) {
[email protected]b8ae0512011-08-25 05:18:2913}
14
15MockObjectProxy::~MockObjectProxy() {
16}
17
18} // namespace dbus