Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / devtools / devtools_protocol.h
index 68b09f2..de85a34 100644 (file)
@@ -38,7 +38,7 @@ class DevToolsProtocol {
   class Command : public Message {
    public:
     Command(int id, const std::string& method, base::DictionaryValue* params);
-    virtual ~Command();
+    ~Command() override;
 
     int id() { return id_; }
     std::string Serialize();
@@ -80,7 +80,7 @@ class DevToolsProtocol {
 
   class Notification : public Message {
    public:
-    virtual ~Notification();
+    ~Notification() override;
 
    private:
     friend class DevToolsProtocol;