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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/password_manager_delegate_impl.cc ('k') | chrome/browser/plugin_installer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_PLUGIN_INSTALLER_H_
6 #define CHROME_BROWSER_PLUGIN_INSTALLER_H_
7 #pragma once
8
9 #include "chrome/browser/tab_contents/infobar_delegate.h"
10
11 class TabContents;
12
13 // The main purpose for this class is to popup/close the infobar when there is
14 // a missing plugin.
15 class PluginInstaller : public ConfirmInfoBarDelegate {
16 public:
17 explicit PluginInstaller(TabContents* tab_contents);
18 ~PluginInstaller();
19
20 void OnMissingPluginStatus(int status);
21 // A new page starts loading. This is the perfect time to close the info bar.
22 void OnStartLoading();
23
24 private:
25 // Overridden from ConfirmInfoBarDelegate:
26 virtual string16 GetMessageText() const;
27 virtual SkBitmap* GetIcon() const;
28 virtual int GetButtons() const;
29 virtual string16 GetButtonLabel(InfoBarButton button) const;
30 virtual bool Accept();
31 virtual string16 GetLinkText();
32 virtual bool LinkClicked(WindowOpenDisposition disposition);
33
34 // The containing TabContents
35 TabContents* tab_contents_;
36
37 DISALLOW_COPY_AND_ASSIGN(PluginInstaller);
38 };
39
40 #endif // CHROME_BROWSER_PLUGIN_INSTALLER_H_
OLDNEW
« 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