| Index: chrome/browser/extensions/extensions_service.cc
|
| diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc
|
| index 58ead19db8df37386ba917958d57ae4db0eb45e3..e055f6142f7a3b78ed687b698bd91f434c3c201d 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
|
|
|