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

Unified Diff: chrome/browser/plugin_installer.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/password_manager_delegate_impl.cc ('k') | chrome/browser/plugin_installer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_installer.h
===================================================================
--- chrome/browser/plugin_installer.h (revision 72158)
+++ chrome/browser/plugin_installer.h (working copy)
@@ -1,40 +0,0 @@
-// Copyright (c) 2010 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_
-#pragma once
-
-#include "chrome/browser/tab_contents/infobar_delegate.h"
-
-class TabContents;
-
-// The main purpose for this class is to popup/close the infobar when there is
-// a missing plugin.
-class PluginInstaller : public ConfirmInfoBarDelegate {
- public:
- explicit PluginInstaller(TabContents* tab_contents);
- ~PluginInstaller();
-
- 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;
- virtual SkBitmap* GetIcon() const;
- virtual int GetButtons() const;
- virtual string16 GetButtonLabel(InfoBarButton button) const;
- virtual bool Accept();
- virtual string16 GetLinkText();
- virtual bool LinkClicked(WindowOpenDisposition disposition);
-
- // The containing TabContents
- TabContents* tab_contents_;
-
- DISALLOW_COPY_AND_ASSIGN(PluginInstaller);
-};
-
-#endif // CHROME_BROWSER_PLUGIN_INSTALLER_H_
« no previous file with comments | « chrome/browser/password_manager_delegate_impl.cc ('k') | chrome/browser/plugin_installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698