Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / cocoa / task_manager_mac_unittest.mm
index e9a88fc..1191930 100644 (file)
@@ -21,21 +21,19 @@ class TestResource : public task_manager::Resource {
  public:
   TestResource(const base::string16& title, pid_t pid)
       : title_(title), pid_(pid) {}
-  virtual base::string16 GetTitle() const OVERRIDE { return title_; }
-  virtual base::string16 GetProfileName() const OVERRIDE {
-    return base::string16();
-  }
-  virtual gfx::ImageSkia GetIcon() const OVERRIDE { return gfx::ImageSkia(); }
-  virtual base::ProcessHandle GetProcess() const OVERRIDE { return pid_; }
-  virtual int GetUniqueChildProcessId() const OVERRIDE {
+  base::string16 GetTitle() const override { return title_; }
+  base::string16 GetProfileName() const override { return base::string16(); }
+  gfx::ImageSkia GetIcon() const override { return gfx::ImageSkia(); }
+  base::ProcessHandle GetProcess() const override { return pid_; }
+  int GetUniqueChildProcessId() const override {
     // In reality the unique child process ID is not the actual process ID,
     // but for testing purposes it shouldn't make difference.
     return static_cast<int>(base::GetCurrentProcId());
   }
-  virtual Type GetType() const OVERRIDE { return RENDERER; }
-  virtual bool SupportNetworkUsage() const OVERRIDE { return false; }
-  virtual void SetSupportNetworkUsage() OVERRIDE { NOTREACHED(); }
-  virtual void Refresh() OVERRIDE {}
+  Type GetType() const override { return RENDERER; }
+  bool SupportNetworkUsage() const override { return false; }
+  void SetSupportNetworkUsage() override { NOTREACHED(); }
+  void Refresh() override {}
   base::string16 title_;
   base::string16 profile_name_;
   pid_t pid_;