Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / infobars / core / confirm_infobar_delegate.h
index 399e9c2..1e1930d 100644 (file)
@@ -23,10 +23,10 @@ class ConfirmInfoBarDelegate : public infobars::InfoBarDelegate {
     BUTTON_CANCEL = 1 << 1,
   };
 
-  virtual ~ConfirmInfoBarDelegate();
+  ~ConfirmInfoBarDelegate() override;
 
   // Returns the InfoBar type to be displayed for the InfoBar.
-  virtual InfoBarAutomationType GetInfoBarAutomationType() const OVERRIDE;
+  InfoBarAutomationType GetInfoBarAutomationType() const override;
 
   // Returns the message string to be displayed for the InfoBar.
   virtual base::string16 GetMessageText() const = 0;
@@ -70,14 +70,12 @@ class ConfirmInfoBarDelegate : public infobars::InfoBarDelegate {
   static scoped_ptr<infobars::InfoBar> CreateInfoBar(
       scoped_ptr<ConfirmInfoBarDelegate> delegate);
 
-  virtual bool ShouldExpireInternal(
-      const NavigationDetails& details) const OVERRIDE;
+  bool ShouldExpireInternal(const NavigationDetails& details) const override;
 
  private:
   // InfoBarDelegate:
-  virtual bool EqualsDelegate(
-      infobars::InfoBarDelegate* delegate) const OVERRIDE;
-  virtual ConfirmInfoBarDelegate* AsConfirmInfoBarDelegate() OVERRIDE;
+  bool EqualsDelegate(infobars::InfoBarDelegate* delegate) const override;
+  ConfirmInfoBarDelegate* AsConfirmInfoBarDelegate() override;
 
   DISALLOW_COPY_AND_ASSIGN(ConfirmInfoBarDelegate);
 };