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 #ifndef CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ |
6 #define CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ | 6 #define CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "chrome/installer/util/product_operations.h" | 10 #include "chrome/installer/util/product_operations.h" |
(...skipping 17 matching lines...) Expand all Loading... |
28 void AppendProductFlags(const std::set<base::string16>& options, | 28 void AppendProductFlags(const std::set<base::string16>& options, |
29 base::CommandLine* cmd_line) const override; | 29 base::CommandLine* cmd_line) const override; |
30 | 30 |
31 void AppendRenameFlags(const std::set<base::string16>& options, | 31 void AppendRenameFlags(const std::set<base::string16>& options, |
32 base::CommandLine* cmd_line) const override; | 32 base::CommandLine* cmd_line) const override; |
33 | 33 |
34 bool SetChannelFlags(const std::set<base::string16>& options, | 34 bool SetChannelFlags(const std::set<base::string16>& options, |
35 bool set, | 35 bool set, |
36 ChannelInfo* channel_info) const override; | 36 ChannelInfo* channel_info) const override; |
37 | 37 |
38 bool ShouldCreateUninstallEntry( | |
39 const std::set<base::string16>& options) const override; | |
40 | |
41 void AddDefaultShortcutProperties( | 38 void AddDefaultShortcutProperties( |
42 BrowserDistribution* dist, | 39 BrowserDistribution* dist, |
43 const base::FilePath& target_exe, | 40 const base::FilePath& target_exe, |
44 ShellUtil::ShortcutProperties* properties) const override; | 41 ShellUtil::ShortcutProperties* properties) const override; |
45 | 42 |
46 void LaunchUserExperiment(const base::FilePath& setup_path, | 43 void LaunchUserExperiment(const base::FilePath& setup_path, |
47 const std::set<base::string16>& options, | 44 const std::set<base::string16>& options, |
48 InstallStatus status, | 45 InstallStatus status, |
49 bool system_level) const override; | 46 bool system_level) const override; |
50 | 47 |
51 private: | 48 private: |
52 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserOperations); | 49 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserOperations); |
53 }; | 50 }; |
54 | 51 |
55 } // namespace installer | 52 } // namespace installer |
56 | 53 |
57 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ | 54 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ |
OLD | NEW |