Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5845)

Unified Diff: chrome/browser/plugin_installer_infobar_delegate.h

Issue 6249010: Cleanup: de-inline a bunch of classes, rename and move "PluginInstaller" to "... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/plugin_installer.cc ('k') | chrome/browser/plugin_installer_infobar_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « chrome/browser/plugin_installer.cc ('k') | chrome/browser/plugin_installer_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698