Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ash / system / tray / throbber_view.h
index c3dadcd..1c7a9d7 100644 (file)
@@ -15,13 +15,13 @@ namespace ash {
 class SystemTrayThrobber : public views::SmoothedThrobber {
  public:
   SystemTrayThrobber(int frame_delay_ms);
-  virtual ~SystemTrayThrobber();
+  ~SystemTrayThrobber() override;
 
   void SetTooltipText(const base::string16& tooltip_text);
 
   // Overriden from views::View.
-  virtual bool GetTooltipText(
-        const gfx::Point& p, base::string16* tooltip) const OVERRIDE;
+  bool GetTooltipText(const gfx::Point& p,
+                      base::string16* tooltip) const override;
 
  private:
   // The current tooltip text.
@@ -34,17 +34,17 @@ class SystemTrayThrobber : public views::SmoothedThrobber {
 class ThrobberView : public views::View {
  public:
   ThrobberView();
-  virtual ~ThrobberView();
+  ~ThrobberView() override;
 
   void Start();
   void Stop();
   void SetTooltipText(const base::string16& tooltip_text);
 
   // Overriden from views::View.
-  virtual gfx::Size GetPreferredSize() const OVERRIDE;
-  virtual void Layout() OVERRIDE;
-  virtual bool GetTooltipText(
-      const gfx::Point& p, base::string16* tooltip) const OVERRIDE;
+  gfx::Size GetPreferredSize() const override;
+  void Layout() override;
+  bool GetTooltipText(const gfx::Point& p,
+                      base::string16* tooltip) const override;
 
  private:
   // Schedules animation for starting/stopping throbber.