| 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 // A handful of resource-like constants related to the Chrome application. | 5 // A handful of resource-like constants related to the Chrome application. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ | 7 #ifndef CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ | 8 #define CHROME_COMMON_CHROME_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #if defined(OS_WIN) | 39 #if defined(OS_WIN) |
| 40 extern const base::FilePath::CharType kMetroDriverDll[]; | 40 extern const base::FilePath::CharType kMetroDriverDll[]; |
| 41 extern const wchar_t kStatusTrayWindowClass[]; | 41 extern const wchar_t kStatusTrayWindowClass[]; |
| 42 #endif // defined(OS_WIN) | 42 #endif // defined(OS_WIN) |
| 43 extern const wchar_t kMessageWindowClass[]; | 43 extern const wchar_t kMessageWindowClass[]; |
| 44 extern const wchar_t kCrashReportLog[]; | 44 extern const wchar_t kCrashReportLog[]; |
| 45 extern const wchar_t kTestingInterfaceDLL[]; | 45 extern const wchar_t kTestingInterfaceDLL[]; |
| 46 extern const char kInitialProfile[]; | 46 extern const char kInitialProfile[]; |
| 47 extern const char kMultiProfileDirPrefix[]; | 47 extern const char kMultiProfileDirPrefix[]; |
| 48 extern const wchar_t kBrowserResourcesDll[]; | 48 extern const wchar_t kBrowserResourcesDll[]; |
| 49 extern const wchar_t kNaClAppName[]; | |
| 50 extern const base::FilePath::CharType kExtensionFileExtension[]; | 49 extern const base::FilePath::CharType kExtensionFileExtension[]; |
| 51 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; | 50 extern const base::FilePath::CharType kExtensionKeyFileExtension[]; |
| 52 | 51 |
| 53 // filenames | 52 // filenames |
| 54 #if defined(OS_ANDROID) | 53 #if defined(OS_ANDROID) |
| 55 extern const base::FilePath::CharType kAndroidCacheFilename[]; | 54 extern const base::FilePath::CharType kAndroidCacheFilename[]; |
| 56 #endif | 55 #endif |
| 57 extern const base::FilePath::CharType kArchivedHistoryFilename[]; | 56 extern const base::FilePath::CharType kArchivedHistoryFilename[]; |
| 58 extern const base::FilePath::CharType kBookmarksFileName[]; | 57 extern const base::FilePath::CharType kBookmarksFileName[]; |
| 59 extern const base::FilePath::CharType kCacheDirname[]; | 58 extern const base::FilePath::CharType kCacheDirname[]; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 #if defined(OS_CHROMEOS) | 138 #if defined(OS_CHROMEOS) |
| 140 // Chrome OS profile directories have custom prefix. | 139 // Chrome OS profile directories have custom prefix. |
| 141 // Profile path format: [user_data_dir]/u-[$hash] | 140 // Profile path format: [user_data_dir]/u-[$hash] |
| 142 // Ex.: /home/chronos/u-0123456789 | 141 // Ex.: /home/chronos/u-0123456789 |
| 143 extern const char kProfileDirPrefix[]; | 142 extern const char kProfileDirPrefix[]; |
| 144 #endif | 143 #endif |
| 145 | 144 |
| 146 } // namespace chrome | 145 } // namespace chrome |
| 147 | 146 |
| 148 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 147 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |