| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef BASE_BASE_PATHS_H_ | 5 #ifndef BASE_BASE_PATHS_H_ |
| 6 #define BASE_BASE_PATHS_H_ | 6 #define BASE_BASE_PATHS_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 // This file declares path keys for the base module. These can be used with | 8 // This file declares path keys for the base module. These can be used with |
| 10 // the PathService to access various special directories and files. | 9 // the PathService to access various special directories and files. |
| 11 | 10 |
| 12 #include "build/build_config.h" | 11 #include "build/build_config.h" |
| 13 | 12 |
| 14 #if defined(OS_WIN) | 13 #if defined(OS_WIN) |
| 15 #include "base/base_paths_win.h" | 14 #include "base/base_paths_win.h" |
| 16 #elif defined(OS_MACOSX) | 15 #elif defined(OS_MACOSX) |
| 17 #include "base/base_paths_mac.h" | 16 #include "base/base_paths_mac.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 // This is $XDG_CACHE_HOME on Linux and | 41 // This is $XDG_CACHE_HOME on Linux and |
| 43 // ~/Library/Caches on Mac. | 42 // ~/Library/Caches on Mac. |
| 44 #endif | 43 #endif |
| 45 | 44 |
| 46 PATH_END | 45 PATH_END |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 } // namespace base | 48 } // namespace base |
| 50 | 49 |
| 51 #endif // BASE_BASE_PATHS_H_ | 50 #endif // BASE_BASE_PATHS_H_ |
| OLD | NEW |