Convert browser_tests to Swarming.
[chromium-blink-merge.git] / chrome / installer / setup / setup_main.h
blob5bcf457fb94e5dfacc86a32e1a916852107e234e
1 // Copyright 2013 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.
5 // This header exists as a starting point for extracting some of the
6 // logic out of setup_main.cc.
8 #ifndef CHROME_INSTALLER_SETUP_SETUP_MAIN_H_
9 #define CHROME_INSTALLER_SETUP_SETUP_MAIN_H_
11 #include "chrome/installer/util/util_constants.h"
13 namespace base {
14 class CommandLine;
15 class FilePath;
16 } // namespace base
18 namespace installer {
19 class InstallationState;
20 class InstallerState;
21 class MasterPreferences;
23 // Helper function that performs the installation of a set of products.
24 // |installer_directory|, if non-NULL, is populated with the path to the
25 // directory containing the newly installed setup.exe. |archive_type| is
26 // populated with the type of archive found. |delegated_to_existing| is set to
27 // |true| if installation was delegated to a pre-existing higher version.
28 InstallStatus InstallProductsHelper(const InstallationState& original_state,
29 const base::FilePath& setup_exe,
30 const base::CommandLine& cmd_line,
31 const MasterPreferences& prefs,
32 const InstallerState& installer_state,
33 base::FilePath* installer_directory,
34 ArchiveType* archive_type,
35 bool* delegated_to_existing);
37 } // namespace installer
39 #endif // CHROME_INSTALLER_SETUP_SETUP_MAIN_H_