summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-18 20:25:01 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-18 20:25:01 +0000
commitc3a4bd9985658b8a5b229983a3ed85042005f0cf (patch)
tree6200f270a1063021b79c9d304dfe8a619fe86445 /chrome/browser/extensions
parent55a0ffd864ee04c0b76cbed90cb7f00aabed1192 (diff)
downloadchromium_src-c3a4bd9985658b8a5b229983a3ed85042005f0cf.zip
chromium_src-c3a4bd9985658b8a5b229983a3ed85042005f0cf.tar.gz
chromium_src-c3a4bd9985658b8a5b229983a3ed85042005f0cf.tar.bz2
FBTF: Remove a few SkBitmap instances (and other headers that were next to them).
BUG=none TEST=compiles Review URL: http://codereview.chromium.org/3161027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56590 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions')
-rw-r--r--chrome/browser/extensions/extension_install_ui.cc3
-rw-r--r--chrome/browser/extensions/extension_install_ui.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/extensions/extension_install_ui.cc b/chrome/browser/extensions/extension_install_ui.cc
index 063b16d..accb80e 100644
--- a/chrome/browser/extensions/extension_install_ui.cc
+++ b/chrome/browser/extensions/extension_install_ui.cc
@@ -133,6 +133,9 @@ ExtensionInstallUI::ExtensionInstallUI(Profile* profile)
prompt_type_(NUM_PROMPT_TYPES),
ALLOW_THIS_IN_INITIALIZER_LIST(tracker_(this)) {}
+ExtensionInstallUI::~ExtensionInstallUI() {
+}
+
void ExtensionInstallUI::ConfirmInstall(Delegate* delegate,
Extension* extension) {
DCHECK(ui_loop_ == MessageLoop::current());
diff --git a/chrome/browser/extensions/extension_install_ui.h b/chrome/browser/extensions/extension_install_ui.h
index 3c46699..e2d626a 100644
--- a/chrome/browser/extensions/extension_install_ui.h
+++ b/chrome/browser/extensions/extension_install_ui.h
@@ -52,7 +52,7 @@ class ExtensionInstallUI : public ImageLoadingTracker::Observer {
explicit ExtensionInstallUI(Profile* profile);
- virtual ~ExtensionInstallUI() {}
+ virtual ~ExtensionInstallUI();
// This is called by the installer to verify whether the installation should
// proceed. This is declared virtual for testing.