Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / remoting / protocol / secure_channel_factory.h
index 8f8e12e..bb0a349 100644 (file)
@@ -27,12 +27,12 @@ class SecureChannelFactory : public StreamChannelFactory {
   // Both parameters must outlive the object.
   SecureChannelFactory(StreamChannelFactory* channel_factory,
                        Authenticator* authenticator);
-  virtual ~SecureChannelFactory();
+  ~SecureChannelFactory() override;
 
   // StreamChannelFactory interface.
-  virtual void CreateChannel(const std::string& name,
-                             const ChannelCreatedCallback& callback) OVERRIDE;
-  virtual void CancelChannelCreation(const std::string& name) OVERRIDE;
+  void CreateChannel(const std::string& name,
+                     const ChannelCreatedCallback& callback) override;
+  void CancelChannelCreation(const std::string& name) override;
 
  private:
   typedef std::map<std::string, ChannelAuthenticator*> AuthenticatorMap;