Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Side by Side Diff: chrome/installer/mini_installer/mini_installer_constants.h

Issue 365143002: mini_installer code cleanups (no functional changes). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gab comments Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
6 #define CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
7
8 namespace mini_installer {
9
10 // Various filenames and prefixes.
11 extern const wchar_t kSetupExe[];
12 extern const wchar_t kChromeArchivePrefix[];
13 extern const wchar_t kSetupPrefix[];
14
15 // Unprefixed command line switch names for setup.exe.
16 extern const wchar_t kCmdInstallArchive[];
17 extern const wchar_t kCmdUpdateSetupExe[];
18 extern const wchar_t kCmdNewSetupExe[];
19
20 extern const wchar_t kTempPrefix[];
21 extern const wchar_t kFullInstallerSuffix[];
22 extern const wchar_t kMultiInstallTag[];
23
24 // The resource types that would be unpacked from the mini installer.
25 extern const wchar_t kBinResourceType[];
26 extern const wchar_t kLZCResourceType[];
27 extern const wchar_t kLZMAResourceType[];
28
29 // Registry value names.
30 extern const wchar_t kApRegistryValue[];
31 extern const wchar_t kCleanupRegistryValue[];
32 extern const wchar_t kUninstallRegistryValue[];
33
34 // Registry key paths.
35 extern const wchar_t kClientStateKeyBase[];
36 extern const wchar_t kCleanupRegistryKey[];
37
38 extern const size_t kMaxResourceSize;
39
40 } // namespace mini_installer
41
42 #endif // CHROME_INSTALLER_MINI_INSTALLER_MINI_INSTALLER_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698