| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #if defined(OS_MACOSX) | 23 #if defined(OS_MACOSX) |
| 24 extern const FilePath::CharType kFrameworkName[]; | 24 extern const FilePath::CharType kFrameworkName[]; |
| 25 #endif | 25 #endif |
| 26 extern const wchar_t kBrowserAppName[]; | 26 extern const wchar_t kBrowserAppName[]; |
| 27 #if defined(OS_WIN) | 27 #if defined(OS_WIN) |
| 28 extern const wchar_t kStatusTrayWindowClass[]; | 28 extern const wchar_t kStatusTrayWindowClass[]; |
| 29 #endif // defined(OS_WIN) | 29 #endif // defined(OS_WIN) |
| 30 extern const wchar_t kMessageWindowClass[]; | 30 extern const wchar_t kMessageWindowClass[]; |
| 31 extern const wchar_t kCrashReportLog[]; | 31 extern const wchar_t kCrashReportLog[]; |
| 32 extern const wchar_t kTestingInterfaceDLL[]; | 32 extern const wchar_t kTestingInterfaceDLL[]; |
| 33 extern const wchar_t kNotSignedInProfile[]; | 33 extern const char kNotSignedInProfile[]; |
| 34 extern const wchar_t kNotSignedInID[]; | |
| 35 extern const char kStatsFilename[]; | 34 extern const char kStatsFilename[]; |
| 36 extern const wchar_t kBrowserResourcesDll[]; | 35 extern const wchar_t kBrowserResourcesDll[]; |
| 37 extern const wchar_t kNaClAppName[]; | 36 extern const wchar_t kNaClAppName[]; |
| 38 extern const FilePath::CharType kExtensionFileExtension[]; | 37 extern const FilePath::CharType kExtensionFileExtension[]; |
| 39 extern const FilePath::CharType kExtensionKeyFileExtension[]; | 38 extern const FilePath::CharType kExtensionKeyFileExtension[]; |
| 40 | 39 |
| 41 // filenames | 40 // filenames |
| 42 extern const FilePath::CharType kArchivedHistoryFilename[]; | 41 extern const FilePath::CharType kArchivedHistoryFilename[]; |
| 43 extern const FilePath::CharType kCacheDirname[]; | 42 extern const FilePath::CharType kCacheDirname[]; |
| 44 extern const FilePath::CharType kMediaCacheDirname[]; | 43 extern const FilePath::CharType kMediaCacheDirname[]; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 95 |
| 97 // If another javascript message box is displayed within | 96 // If another javascript message box is displayed within |
| 98 // kJavascriptMessageExpectedDelay of a previous javascript message box being | 97 // kJavascriptMessageExpectedDelay of a previous javascript message box being |
| 99 // dismissed, display an option to suppress future message boxes from this | 98 // dismissed, display an option to suppress future message boxes from this |
| 100 // contents. | 99 // contents. |
| 101 extern const int kJavascriptMessageExpectedDelay; | 100 extern const int kJavascriptMessageExpectedDelay; |
| 102 | 101 |
| 103 } // namespace chrome | 102 } // namespace chrome |
| 104 | 103 |
| 105 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 104 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |