| 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 extern const base::FilePath::CharType kBrowserProcessExecutableNameChromium[]; | 22 extern const base::FilePath::CharType kBrowserProcessExecutableNameChromium[]; |
| 23 extern const base::FilePath::CharType kHelperProcessExecutableNameChromium[]; | 23 extern const base::FilePath::CharType kHelperProcessExecutableNameChromium[]; |
| 24 extern const base::FilePath::CharType kBrowserProcessExecutablePathChromium[]; | 24 extern const base::FilePath::CharType kBrowserProcessExecutablePathChromium[]; |
| 25 extern const base::FilePath::CharType kHelperProcessExecutablePathChromium[]; | 25 extern const base::FilePath::CharType kHelperProcessExecutablePathChromium[]; |
| 26 #if defined(OS_MACOSX) | 26 #if defined(OS_MACOSX) |
| 27 // NOTE: if you change the value of kFrameworkName, please don't forget to | 27 // NOTE: if you change the value of kFrameworkName, please don't forget to |
| 28 // update components/test/run_all_unittests.cc as well. | 28 // update components/test/run_all_unittests.cc as well. |
| 29 // TODO(tfarina): Remove the comment above, when you fix components to use plist | 29 // TODO(tfarina): Remove the comment above, when you fix components to use plist |
| 30 // on Mac. | 30 // on Mac. |
| 31 extern const base::FilePath::CharType kFrameworkName[]; | 31 extern const base::FilePath::CharType kFrameworkName[]; |
| 32 extern const base::FilePath::CharType kFrameworkExecutableName[]; |
| 32 #endif // OS_MACOSX | 33 #endif // OS_MACOSX |
| 33 #if defined(OS_WIN) | 34 #if defined(OS_WIN) |
| 34 extern const base::FilePath::CharType kBrowserResourcesDll[]; | 35 extern const base::FilePath::CharType kBrowserResourcesDll[]; |
| 35 extern const base::FilePath::CharType kChromeElfDllName[]; | 36 extern const base::FilePath::CharType kChromeElfDllName[]; |
| 36 extern const base::FilePath::CharType kStatusTrayWindowClass[]; | 37 extern const base::FilePath::CharType kStatusTrayWindowClass[]; |
| 37 #endif // defined(OS_WIN) | 38 #endif // defined(OS_WIN) |
| 38 | 39 |
| 39 extern const char kInitialProfile[]; | 40 extern const char kInitialProfile[]; |
| 40 extern const char kMultiProfileDirPrefix[]; | 41 extern const char kMultiProfileDirPrefix[]; |
| 41 extern const base::FilePath::CharType kGuestProfileDir[]; | 42 extern const base::FilePath::CharType kGuestProfileDir[]; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 | 113 |
| 113 // Used to identify the application to the system AV function in Windows. | 114 // Used to identify the application to the system AV function in Windows. |
| 114 extern const char kApplicationClientIDStringForAVScanning[]; | 115 extern const char kApplicationClientIDStringForAVScanning[]; |
| 115 | 116 |
| 116 // The largest reasonable length we'd assume for a meta tag attribute. | 117 // The largest reasonable length we'd assume for a meta tag attribute. |
| 117 extern const size_t kMaxMetaTagAttributeLength; | 118 extern const size_t kMaxMetaTagAttributeLength; |
| 118 | 119 |
| 119 } // namespace chrome | 120 } // namespace chrome |
| 120 | 121 |
| 121 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ | 122 #endif // CHROME_COMMON_CHROME_CONSTANTS_H_ |
| OLD | NEW |