summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/crashed_extension_infobar.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 11:09:00 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-14 11:09:00 +0000
commiteaa7dd18773869211fa0e19ed84392830c0978a8 (patch)
treed45899744e75811ef8a717f83580aab9ef6bf238 /chrome/browser/extensions/crashed_extension_infobar.h
parent257ff5de808c52da6432b7f458b456b99a4d5278 (diff)
downloadchromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.zip
chromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.tar.gz
chromium_src-eaa7dd18773869211fa0e19ed84392830c0978a8.tar.bz2
Rename ExtensionsService to ExtensionService.
BUG=61409 TEST=trybots Review URL: http://codereview.chromium.org/5730004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69117 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/crashed_extension_infobar.h')
-rw-r--r--chrome/browser/extensions/crashed_extension_infobar.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/extensions/crashed_extension_infobar.h b/chrome/browser/extensions/crashed_extension_infobar.h
index 1508ae5..619561c 100644
--- a/chrome/browser/extensions/crashed_extension_infobar.h
+++ b/chrome/browser/extensions/crashed_extension_infobar.h
@@ -12,7 +12,7 @@
#include "chrome/browser/tab_contents/infobar_delegate.h"
class Extension;
-class ExtensionsService;
+class ExtensionService;
class SkBitmap;
// This infobar will be displayed when an extension process crashes. It allows
@@ -21,9 +21,9 @@ class CrashedExtensionInfoBarDelegate : public ConfirmInfoBarDelegate {
public:
// |tab_contents| should point to the TabContents the infobar will be added
// to. |extension| should be the crashed extension, and |extensions_service|
- // the ExtensionsService which manages that extension.
+ // the ExtensionService which manages that extension.
CrashedExtensionInfoBarDelegate(TabContents* tab_contents,
- ExtensionsService* extensions_service,
+ ExtensionService* extensions_service,
const Extension* extension);
const std::string extension_id() { return extension_id_; }
@@ -41,7 +41,7 @@ class CrashedExtensionInfoBarDelegate : public ConfirmInfoBarDelegate {
virtual bool Accept();
private:
- ExtensionsService* extensions_service_;
+ ExtensionService* extensions_service_;
const std::string extension_id_;
const std::string extension_name_;