Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / nacl_host / nacl_infobar_delegate.h
index 2b3b4e9..9b27f47 100644 (file)
@@ -5,22 +5,22 @@
 #ifndef CHROME_BROWSER_NACL_HOST_NACL_INFOBAR_DELEGATE_H_
 #define CHROME_BROWSER_NACL_HOST_NACL_INFOBAR_DELEGATE_H_
 
-#include "chrome/browser/infobars/confirm_infobar_delegate.h"
+#include "components/infobars/core/confirm_infobar_delegate.h"
 
 class NaClInfoBarDelegate : public ConfirmInfoBarDelegate {
  public:
-  // Creates a NaCl infobar delegate and adds it to the infobar service
-  // corresponding to the given render process and view IDs.
+  // Creates a NaCl infobar and delegate and adds the infobar to the infobar
+  // service corresponding to the given render process and view IDs.
   static void Create(int render_process_id, int render_view_id);
 
  private:
-  explicit NaClInfoBarDelegate(InfoBarService* infobar_service);
-  virtual ~NaClInfoBarDelegate();
+  NaClInfoBarDelegate();
+  ~NaClInfoBarDelegate() override;
 
-  virtual string16 GetMessageText() const OVERRIDE;
-  virtual int GetButtons() const OVERRIDE;
-  virtual string16 GetLinkText() const OVERRIDE;
-  virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
+  base::string16 GetMessageText() const override;
+  int GetButtons() const override;
+  base::string16 GetLinkText() const override;
+  bool LinkClicked(WindowOpenDisposition disposition) override;
 
   DISALLOW_COPY_AND_ASSIGN(NaClInfoBarDelegate);
 };