// 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_EXPORTED_OBJECT_H_ #define DBUS_MOCK_EXPORTED_OBJECT_H_ #include <string> #include "dbus/exported_object.h" #include "dbus/object_path.h" #include "testing/gmock/include/gmock/gmock.h" namespace dbus { // Mock for ExportedObject. class MockExportedObject : public ExportedObject { … }; } // namespace dbus #endif // DBUS_MOCK_EXPORTED_OBJECT_H_