Index: base/path_service.cc |
=================================================================== |
--- base/path_service.cc (revision 114238) |
+++ base/path_service.cc (working copy) |
@@ -162,7 +162,7 @@ |
PathData* path_data = GetPathData(); |
base::AutoLock scoped_lock(path_data->lock); |
- // check for an overridden version. |
+ // check for an overriden version. |
PathMap::const_iterator it = path_data->overrides.find(key); |
if (it != path_data->overrides.end()) { |
*result = it->second; |
@@ -230,13 +230,13 @@ |
// Make sure the directory exists. We need to do this before we translate |
// this to the absolute path because on POSIX, AbsolutePath fails if called |
- // on a non-existent path. |
+ // on a non-existant path. |
if (!file_util::PathExists(file_path) && |
!file_util::CreateDirectory(file_path)) |
return false; |
// We need to have an absolute path, as extensions and plugins don't like |
- // relative paths, and will gladly crash the browser in CHECK()s if they get a |
+ // relative paths, and will glady crash the browser in CHECK()s if they get a |
// relative path. |
if (!file_util::AbsolutePath(&file_path)) |
return false; |