Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / test / chromedriver / logging.h
index 32b3f8a..7b923e7 100644 (file)
@@ -33,7 +33,7 @@ class WebDriverLog : public Log {
 
   // Creates a WebDriverLog with the given type and minimum level.
   WebDriverLog(const std::string& type, Level min_level);
-  virtual ~WebDriverLog();
+  ~WebDriverLog() override;
 
   // Returns entries accumulated so far, as a ListValue ready for serialization
   // into the wire protocol response to the "/log" command.
@@ -46,10 +46,10 @@ class WebDriverLog : public Log {
   std::string GetFirstErrorMessage() const;
 
   // Translates a Log entry level into a WebDriver level and stores the entry.
-  virtual void AddEntryTimestamped(const base::Time& timestamp,
-                                   Level level,
-                                   const std::string& source,
-                                   const std::string& message) OVERRIDE;
+  void AddEntryTimestamped(const base::Time& timestamp,
+                           Level level,
+                           const std::string& source,
+                           const std::string& message) override;
 
   const std::string& type() const;
   void set_min_level(Level min_level);