OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/base_paths.h" | 5 #include "base/base_paths.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 break; | 29 break; |
30 default: | 30 default: |
31 return false; | 31 return false; |
32 } | 32 } |
33 | 33 |
34 *result = cur; | 34 *result = cur; |
35 return true; | 35 return true; |
36 } | 36 } |
37 | 37 |
38 } // namespace base | 38 } // namespace base |
39 | |
OLD | NEW |