Chromium Code Reviews| 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 // Defines all the command-line switches used by Chrome installer. | 5 // Defines all the command-line switches used by Chrome installer. |
| 6 | 6 |
| 7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 7 #ifndef CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
| 8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 8 #define CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
| 9 | 9 |
| 10 namespace installer { | 10 namespace installer { |
| 11 | 11 |
| 12 extern const wchar_t kChromeArchive[]; | 12 extern const wchar_t kChromeArchive[]; |
| 13 extern const wchar_t kChromeCompressedArchive[]; | 13 extern const wchar_t kChromeCompressedArchive[]; |
| 14 extern const wchar_t kVisualElements[]; | 14 extern const wchar_t kVisualElements[]; |
| 15 extern const wchar_t kVisualElementsManifest[]; | 15 extern const wchar_t kVisualElementsManifest[]; |
| 16 | 16 |
| 17 extern const wchar_t kInstallSourceDir[]; | 17 extern const wchar_t kInstallSourceDir[]; |
| 18 extern const wchar_t kInstallSourceChromeDir[]; | 18 extern const wchar_t kInstallSourceChromeDir[]; |
| 19 | 19 |
| 20 extern const wchar_t kMediaPlayerRegPath[]; | 20 extern const wchar_t kMediaPlayerRegPath[]; |
| 21 | 21 |
| 22 extern const wchar_t kEventlogProvidersRegPath[]; | |
|
grt (UTC plus 2)
2016/11/16 15:04:44
if you follow my request to move both bits of code
pastarmovj
2016/11/17 15:34:43
Done.
| |
| 23 extern const wchar_t kChromeEventLogProviderName[]; | |
| 24 extern const wchar_t kCategoryCount[]; | |
| 25 extern const wchar_t kTypesSupported[]; | |
| 26 extern const wchar_t kCategoryMessageFile[]; | |
| 27 extern const wchar_t kEventMessageFile[]; | |
| 28 extern const wchar_t kParameterMessageFile[]; | |
| 29 | |
| 22 namespace switches { | 30 namespace switches { |
| 23 | 31 |
| 24 extern const char kDelay[]; | 32 extern const char kDelay[]; |
| 25 extern const char kSetDisplayVersionProduct[]; | 33 extern const char kSetDisplayVersionProduct[]; |
| 26 extern const char kSetDisplayVersionValue[]; | 34 extern const char kSetDisplayVersionValue[]; |
| 27 | 35 |
| 28 } // namespace switches | 36 } // namespace switches |
| 29 | 37 |
| 30 } // namespace installer | 38 } // namespace installer |
| 31 | 39 |
| 32 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ | 40 #endif // CHROME_INSTALLER_SETUP_SETUP_CONSTANTS_H__ |
| OLD | NEW |