Fix some whitespace lint that has crept in.

Perhaps this got in from git not running 
gcl lint / gcl presubmit checks?


BUG=none
TEST=none


Review URL: http://codereview.chromium.org/159678

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22132 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/extensions/extensions_service.cc b/chrome/browser/extensions/extensions_service.cc
index adc554fa..3302f4d 100644
--- a/chrome/browser/extensions/extensions_service.cc
+++ b/chrome/browser/extensions/extensions_service.cc
@@ -126,11 +126,10 @@
 
 void ExtensionsService::UpdateExtension(const std::string& id,
                                         const FilePath& extension_path) {
-
-  if (!GetExtensionById(id)) {	
+  if (!GetExtensionById(id)) {
     LOG(WARNING) << "Will not update extension " << id << " because it is not "
-                 << "installed";	
-    return;	
+                 << "installed";
+    return;
   }
 
   new CrxInstaller(extension_path, install_directory_, Extension::INTERNAL,
@@ -391,7 +390,7 @@
                                                  const FilePath& path,
                                                  Extension::Location location) {
   // Before even bothering to unpack, check and see if we already have this
-  // version. This is important because these extensions are going to get 
+  // version. This is important because these extensions are going to get
   // installed on every startup.
   Extension* existing = GetExtensionById(id);
   if (existing) {