Index: chrome/browser/plugin_installer_infobar_delegate.h |
=================================================================== |
--- chrome/browser/plugin_installer_infobar_delegate.h (revision 71131) |
+++ chrome/browser/plugin_installer_infobar_delegate.h (working copy) |
@@ -1,9 +1,9 @@ |
-// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_BROWSER_PLUGIN_INSTALLER_H_ |
-#define CHROME_BROWSER_PLUGIN_INSTALLER_H_ |
+#ifndef CHROME_BROWSER_PLUGIN_INSTALLER_INFOBAR_DELEGATE_H_ |
+#define CHROME_BROWSER_PLUGIN_INSTALLER_INFOBAR_DELEGATE_H_ |
#pragma once |
#include "chrome/browser/tab_contents/infobar_delegate.h" |
@@ -12,19 +12,17 @@ |
// The main purpose for this class is to popup/close the infobar when there is |
// a missing plugin. |
-class PluginInstaller : public ConfirmInfoBarDelegate { |
+class PluginInstallerInfoBarDelegate : public ConfirmInfoBarDelegate { |
public: |
- explicit PluginInstaller(TabContents* tab_contents); |
- ~PluginInstaller(); |
+ explicit PluginInstallerInfoBarDelegate(TabContents* tab_contents); |
+ virtual ~PluginInstallerInfoBarDelegate(); |
void OnMissingPluginStatus(int status); |
- // A new page starts loading. This is the perfect time to close the info bar. |
- void OnStartLoading(); |
private: |
- // Overridden from ConfirmInfoBarDelegate: |
- virtual string16 GetMessageText() const; |
+ // ConfirmInfoBarDelegate: |
virtual SkBitmap* GetIcon() const; |
+ virtual string16 GetMessageText() const; |
virtual int GetButtons() const; |
virtual string16 GetButtonLabel(InfoBarButton button) const; |
virtual bool Accept(); |
@@ -34,7 +32,7 @@ |
// The containing TabContents |
TabContents* tab_contents_; |
- DISALLOW_COPY_AND_ASSIGN(PluginInstaller); |
+ DISALLOW_COPY_AND_ASSIGN(PluginInstallerInfoBarDelegate); |
}; |
-#endif // CHROME_BROWSER_PLUGIN_INSTALLER_H_ |
+#endif // CHROME_BROWSER_PLUGIN_INSTALLER_INFOBAR_DELEGATE_H_ |