| Index: remoting/host/pairing_registry_delegate_linux.h
|
| diff --git a/remoting/host/pairing_registry_delegate_linux.h b/remoting/host/pairing_registry_delegate_linux.h
|
| index 293b28f4c0febec1fc306dfc664df05b1a6c0479..ad342ebf19531bc365a5b694f643b79c441a18d5 100644
|
| --- a/remoting/host/pairing_registry_delegate_linux.h
|
| +++ b/remoting/host/pairing_registry_delegate_linux.h
|
| @@ -19,15 +19,15 @@ class PairingRegistryDelegateLinux
|
| : public protocol::PairingRegistry::Delegate {
|
| public:
|
| PairingRegistryDelegateLinux();
|
| - virtual ~PairingRegistryDelegateLinux();
|
| + ~PairingRegistryDelegateLinux() override;
|
|
|
| // PairingRegistry::Delegate interface
|
| - virtual scoped_ptr<base::ListValue> LoadAll() override;
|
| - virtual bool DeleteAll() override;
|
| - virtual protocol::PairingRegistry::Pairing Load(
|
| + scoped_ptr<base::ListValue> LoadAll() override;
|
| + bool DeleteAll() override;
|
| + protocol::PairingRegistry::Pairing Load(
|
| const std::string& client_id) override;
|
| - virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) override;
|
| - virtual bool Delete(const std::string& client_id) override;
|
| + bool Save(const protocol::PairingRegistry::Pairing& pairing) override;
|
| + bool Delete(const std::string& client_id) override;
|
|
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(PairingRegistryDelegateLinuxTest, SaveAndLoad);
|
|
|