// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DBUS_MOCK_OBJECT_PROXY_H_ #define DBUS_MOCK_OBJECT_PROXY_H_ #include <memory> #include <string> #include "base/types/expected.h" #include "dbus/error.h" #include "dbus/message.h" #include "dbus/object_path.h" #include "dbus/object_proxy.h" #include "testing/gmock/include/gmock/gmock.h" namespace dbus { // Mock for ObjectProxy. class MockObjectProxy : public ObjectProxy { … }; } // namespace dbus #endif // DBUS_MOCK_OBJECT_PROXY_H_