| 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_WIN_H__ | 5 #ifndef BASE_BASE_PATHS_WIN_H_ |
| 6 #define BASE_BASE_PATHS_WIN_H__ | 6 #define BASE_BASE_PATHS_WIN_H_ |
| 7 | 7 |
| 8 // This file declares windows-specific path keys for the base module. | 8 // This file declares windows-specific path keys for the base module. |
| 9 // These can be used with the PathService to access various special | 9 // These can be used with the PathService to access various special |
| 10 // directories and files. | 10 // directories and files. |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 | 13 |
| 14 enum { | 14 enum { |
| 15 PATH_WIN_START = 100, | 15 PATH_WIN_START = 100, |
| 16 | 16 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 DIR_USER_QUICK_LAUNCH, // Directory for the quick launch shortcuts. | 44 DIR_USER_QUICK_LAUNCH, // Directory for the quick launch shortcuts. |
| 45 DIR_TASKBAR_PINS, // Directory for the shortcuts pinned to taskbar via | 45 DIR_TASKBAR_PINS, // Directory for the shortcuts pinned to taskbar via |
| 46 // base::win::TaskbarPinShortcutLink(). | 46 // base::win::TaskbarPinShortcutLink(). |
| 47 DIR_WINDOWS_FONTS, // Usually C:\Windows\Fonts. | 47 DIR_WINDOWS_FONTS, // Usually C:\Windows\Fonts. |
| 48 | 48 |
| 49 PATH_WIN_END | 49 PATH_WIN_END |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 } // namespace base | 52 } // namespace base |
| 53 | 53 |
| 54 #endif // BASE_BASE_PATHS_WIN_H__ | 54 #endif // BASE_BASE_PATHS_WIN_H_ |
| OLD | NEW |