| // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef SHILL_DEVICE_STUB_H_ |
| #define SHILL_DEVICE_STUB_H_ |
| |
| #include <base/memory/ref_counted.h> |
| |
| #include <string> |
| #include <vector> |
| |
| #include "shill/device.h" |
| #include "shill/event_dispatcher.h" |
| #include "shill/service.h" |
| |
| namespace shill { |
| |
| class ControlInterface; |
| class DeviceAdaptorInterface; |
| class EventDispatcher; |
| class Endpoint; |
| class DeviceInfo; |
| class Manager; |
| class Metrics; |
| |
| // Non-functional Device subclass used for non-operable or blacklisted devices |
| class DeviceStub : public Device { |
| public: |
| DeviceStub(ControlInterface* control_interface, |
| EventDispatcher* dispatcher, |
| Metrics* metrics, |
| Manager* manager, |
| const std::string& link_name, |
| const std::string& address, |
| int interface_index, |
| Technology::Identifier technology) |
| : Device(control_interface, dispatcher, metrics, manager, link_name, |
| address, interface_index, technology) {} |
| void Start(Error* /*error*/, |
| const EnabledStateChangedCallback& /*callback*/) {} |
| void Stop(Error* /*error*/, |
| const EnabledStateChangedCallback& /*callback*/) {} |
| |
| private: |
| DISALLOW_COPY_AND_ASSIGN(DeviceStub); |
| }; |
| |
| } // namespace shill |
| |
| #endif // SHILL_DEVICE_STUB_H_ |