summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-22 16:19:13 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-22 16:19:13 +0000
commite7afe2458ed03e907601cd3c05dc5f253f824d88 (patch)
tree1cf245de79837f358de6939d44df9f2a2d54fd01 /chrome/browser/extensions
parentac1894aec051033fc13bc41e1399ac05f5df3cc6 (diff)
downloadchromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.zip
chromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.tar.gz
chromium_src-e7afe2458ed03e907601cd3c05dc5f253f824d88.tar.bz2
Spelling correction: "nonexistant" -> "nonexistent".
BUG=none TEST=good spellers are slightly happier Review URL: http://codereview.chromium.org/3143037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57020 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions')
-rw-r--r--chrome/browser/extensions/extensions_service.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc
index 58ead19..e055f61 100644
--- a/chrome/browser/extensions/extensions_service.cc
+++ b/chrome/browser/extensions/extensions_service.cc
@@ -406,7 +406,7 @@ void ExtensionsService::UninstallExtension(const std::string& extension_id,
bool external_uninstall) {
Extension* extension = GetExtensionByIdInternal(extension_id, true, true);
- // Callers should not send us nonexistant extensions.
+ // Callers should not send us nonexistent extensions.
DCHECK(extension);
// Notify interested parties that we're uninstalling this extension.
@@ -901,7 +901,7 @@ void ExtensionsService::UnloadExtension(const std::string& extension_id) {
scoped_ptr<Extension> extension(
GetExtensionByIdInternal(extension_id, true, true));
- // Callers should not send us nonexistant extensions.
+ // Callers should not send us nonexistent extensions.
CHECK(extension.get());
// Keep information about the extension so that we can reload it later