diff options
Diffstat (limited to 'base/path_service.cc')
-rw-r--r-- | base/path_service.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/path_service.cc b/base/path_service.cc index b47111f..0c3c3e2 100644 --- a/base/path_service.cc +++ b/base/path_service.cc @@ -119,7 +119,7 @@ struct PathData { } } }; - + static PathData* GetPathData() { return Singleton<PathData>::get(); } @@ -131,7 +131,7 @@ static PathData* GetPathData() { bool PathService::GetFromCache(int key, FilePath* result) { PathData* path_data = GetPathData(); AutoLock scoped_lock(path_data->lock); - + // check for a cached version PathMap::const_iterator it = path_data->cache.find(key); if (it != path_data->cache.end()) { |