| 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/file_path.h" | 10 #include "base/file_path.h" |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 extern const FilePath::CharType kWebAppDirname[]; | 88 extern const FilePath::CharType kWebAppDirname[]; |
| 89 extern const FilePath::CharType kWebDataFilename[]; | 89 extern const FilePath::CharType kWebDataFilename[]; |
| 90 | 90 |
| 91 // File name of the Pepper Flash plugin on different platforms. | 91 // File name of the Pepper Flash plugin on different platforms. |
| 92 extern const FilePath::CharType kPepperFlashPluginFilename[]; | 92 extern const FilePath::CharType kPepperFlashPluginFilename[]; |
| 93 | 93 |
| 94 // directory names | 94 // directory names |
| 95 extern const wchar_t kUserDataDirname[]; | 95 extern const wchar_t kUserDataDirname[]; |
| 96 | 96 |
| 97 #if defined(OS_CHROMEOS) | 97 #if defined(OS_CHROMEOS) |
| 98 extern const FilePath::CharType kGDataCacheDirname[]; | 98 extern const FilePath::CharType kDriveCacheDirname[]; |
| 99 #endif // defined(OS_CHROMEOS) | 99 #endif // defined(OS_CHROMEOS) |
| 100 | 100 |
| 101 extern const bool kRecordModeEnabled; | 101 extern const bool kRecordModeEnabled; |
| 102 | 102 |
| 103 // The language code used when the language of a page could not be detected. | 103 // The language code used when the language of a page could not be detected. |
| 104 // (Matches what the CLD -Compact Language Detection- library reports.) | 104 // (Matches what the CLD -Compact Language Detection- library reports.) |
| 105 extern const char* const kUnknownLanguageCode; | 105 extern const char* const kUnknownLanguageCode; |
| 106 | 106 |
| 107 // If another javascript message box is displayed within | 107 // If another javascript message box is displayed within |
| 108 // kJavascriptMessageExpectedDelay of a previous javascript message box being | 108 // kJavascriptMessageExpectedDelay of a previous javascript message box being |
| (...skipping 25 matching lines...) Expand all Loading... |
| 134 extern const wchar_t kMetroChromeUserDataSubDir[]; | 134 extern const wchar_t kMetroChromeUserDataSubDir[]; |
| 135 // Used by Metro Chrome to initiate navigation and search requests. | 135 // Used by Metro Chrome to initiate navigation and search requests. |
| 136 extern const wchar_t kMetroNavigationAndSearchMessage[]; | 136 extern const wchar_t kMetroNavigationAndSearchMessage[]; |
| 137 // Used by Metro Chrome to get information about the current tab. | 137 // Used by Metro Chrome to get information about the current tab. |
| 138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; | 138 extern const wchar_t kMetroGetCurrentTabInfoMessage[]; |
| 139 #endif | 139 #endif |
| 140 | 140 |
| 141 } // namespace chrome | 141 } // namespace chrome |
| 142 | 142 |
| 143 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 143 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |