| Index: base/path_service.cc
|
| ===================================================================
|
| --- base/path_service.cc (revision 67200)
|
| +++ base/path_service.cc (working copy)
|
| @@ -215,6 +215,14 @@
|
| }
|
| #endif
|
|
|
| +// TODO(evan): remove me -- see comments in header.
|
| +bool PathService::IsOverridden(int key) {
|
| + PathData* path_data = GetPathData();
|
| + DCHECK(path_data);
|
| + AutoLock scoped_lock(path_data->lock);
|
| + return path_data->overrides.find(key) != path_data->overrides.end();
|
| +}
|
| +
|
| bool PathService::Override(int key, const FilePath& path) {
|
| PathData* path_data = GetPathData();
|
| DCHECK(path_data);
|
|
|
| Property changes on: base/path_service.cc
|
| ___________________________________________________________________
|
| Added: svn:mergeinfo
|
|
|
|
|