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 // This file contains the specification of setup main functions. | 5 // This file contains the specification of setup main functions. |
6 | 6 |
7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_ | 7 #ifndef CHROME_INSTALLER_SETUP_INSTALL_H_ |
8 #define CHROME_INSTALLER_SETUP_INSTALL_H_ | 8 #define CHROME_INSTALLER_SETUP_INSTALL_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/version.h" | 14 #include "base/version.h" |
15 #include "chrome/installer/util/product.h" | 15 #include "chrome/installer/util/product.h" |
16 #include "chrome/installer/util/util_constants.h" | 16 #include "chrome/installer/util/util_constants.h" |
17 | 17 |
18 class DictionaryValue; | |
19 class FilePath; | 18 class FilePath; |
20 class WorkItemList; | 19 class WorkItemList; |
21 | 20 |
22 namespace installer { | 21 namespace installer { |
23 | 22 |
24 class InstallationState; | 23 class InstallationState; |
25 class InstallerState; | 24 class InstallerState; |
26 class MasterPreferences; | 25 class MasterPreferences; |
27 | 26 |
28 // This function installs or updates a new version of Chrome. It returns | 27 // This function installs or updates a new version of Chrome. It returns |
(...skipping 19 matching lines...) Expand all Loading... |
48 const FilePath& setup_path, | 47 const FilePath& setup_path, |
49 const FilePath& archive_path, | 48 const FilePath& archive_path, |
50 const FilePath& install_temp_path, | 49 const FilePath& install_temp_path, |
51 const FilePath& prefs_path, | 50 const FilePath& prefs_path, |
52 const installer::MasterPreferences& prefs, | 51 const installer::MasterPreferences& prefs, |
53 const Version& new_version); | 52 const Version& new_version); |
54 | 53 |
55 } // namespace installer | 54 } // namespace installer |
56 | 55 |
57 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_ | 56 #endif // CHROME_INSTALLER_SETUP_INSTALL_H_ |
OLD | NEW |