diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 22:00:59 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-18 22:00:59 +0000 |
commit | 19bcf9dbcb4462147f58a77bc1d5a3520356f3cd (patch) | |
tree | 64dfb4d829c39d782c4f495d5863ca0e56c90b39 /chrome/browser/extensions/theme_installed_infobar_delegate.h | |
parent | 1aaf3f192c62c191ae1d71f10b8001a85799107a (diff) | |
download | chromium_src-19bcf9dbcb4462147f58a77bc1d5a3520356f3cd.zip chromium_src-19bcf9dbcb4462147f58a77bc1d5a3520356f3cd.tar.gz chromium_src-19bcf9dbcb4462147f58a77bc1d5a3520356f3cd.tar.bz2 |
More misc. cleanup:
* Put more code in anonymous namespaces
* Minor comment/variable name/spacing fixes
* Avoid unnecessary NULL-check
* 0 -> NULL
BUG=none
TEST=none
R=mpcomplete@chromium.org
Review URL: https://codereview.chromium.org/19729010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212446 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/theme_installed_infobar_delegate.h')
-rw-r--r-- | chrome/browser/extensions/theme_installed_infobar_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/theme_installed_infobar_delegate.h b/chrome/browser/extensions/theme_installed_infobar_delegate.h index 14ba85d..f37efcc 100644 --- a/chrome/browser/extensions/theme_installed_infobar_delegate.h +++ b/chrome/browser/extensions/theme_installed_infobar_delegate.h @@ -26,8 +26,8 @@ class Extension; class ThemeInstalledInfoBarDelegate : public ConfirmInfoBarDelegate, public content::NotificationObserver { public: - // Creates a theme installed delegate and adds it to the last active tab on - // |profile|. + // Creates a theme installed infobar delegate and adds it to the last active + // tab on |profile|. static void Create(const extensions::Extension* new_theme, Profile* profile, const std::string& previous_theme_id, |