Chromium Code Reviews| Index: chromeos/dbus/fake_shill_third_party_vpn_driver_client.h |
| diff --git a/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h b/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cf1891155ad90ec8c01a3b874def917ef72ff4f4 |
| --- /dev/null |
| +++ b/chromeos/dbus/fake_shill_third_party_vpn_driver_client.h |
| @@ -0,0 +1,57 @@ |
| +// Copyright 2014 The Chromium 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 CHROMEOS_DBUS_FAKE_SHILL_THIRD_PARTY_VPN_DRIVER_CLIENT_H_ |
| +#define CHROMEOS_DBUS_FAKE_SHILL_THIRD_PARTY_VPN_DRIVER_CLIENT_H_ |
| + |
| +#include "base/basictypes.h" |
| +#include "chromeos/chromeos_export.h" |
| +#include "chromeos/dbus/shill_third_party_vpn_driver_client.h" |
| + |
| +namespace chromeos { |
| + |
| +// A fake implementation of ShillThirdPartyVpnDriverClient. |
| +class CHROMEOS_EXPORT FakeShillThirdPartyVpnDriverClient |
| + : public ShillThirdPartyVpnDriverClient, |
| + public ShillThirdPartyVpnDriverClient::TestInterface { |
| + public: |
| + FakeShillThirdPartyVpnDriverClient(); |
| + ~FakeShillThirdPartyVpnDriverClient(); |
|
stevenjb
2014/10/30 20:55:36
override
kaliamoorthi
2014/10/31 11:03:47
Done.
|
| + |
| + // ShillThirdPartyVpnDriverClient overrides |
| + void Init(dbus::Bus* bus) override; |
| + void AddShillThirdPartyVpnObserver( |
| + const dbus::ObjectPath& object_path, |
| + ShillThirdPartyVpnObserver* observer) override; |
| + void RemoveShillThirdPartyVpnObserver( |
| + const dbus::ObjectPath& object_path) override; |
| + void SetParameters(const dbus::ObjectPath& object_path, |
| + const base::DictionaryValue& parameters, |
| + const VoidDBusMethodCallback& callback) override; |
| + void UpdateConnectionState(const dbus::ObjectPath& object_path, |
| + const uint32 connection_state, |
| + const VoidDBusMethodCallback& callback) override; |
| + void SendPacket(const dbus::ObjectPath& object_path, |
| + const std::vector<uint8>& ip_packet, |
| + const VoidDBusMethodCallback& callback) override; |
| + ShillThirdPartyVpnDriverClient::TestInterface* GetTestInterface() override; |
| + |
| + // ShillThirdPartyVpnDriverClient::TestInterface overrides |
| + void OnPacketReceived(const dbus::ObjectPath& object_path, |
| + const uint8* data, |
| + size_t length) override; |
| + void OnPlatformMessage(const dbus::ObjectPath& object_path, |
| + uint32 connection_state) override; |
| + |
| + private: |
| + typedef std::map<std::string, ShillThirdPartyVpnObserver*> ObserverMap; |
| + |
| + ObserverMap observer_map_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(FakeShillThirdPartyVpnDriverClient); |
| +}; |
| + |
| +} // namespace chromeos |
| + |
| +#endif // CHROMEOS_DBUS_FAKE_SHILL_THIRD_PARTY_VPN_DRIVER_CLIENT_H_ |