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_APP_HOST_OPERATIONS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_CHROME_APP_HOST_OPERATIONS_H_ |
6 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_OPERATIONS_H_ | 6 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_OPERATIONS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/installer/util/product_operations.h" | 10 #include "chrome/installer/util/product_operations.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 ChannelInfo* channel_info) const OVERRIDE; | 44 ChannelInfo* channel_info) const OVERRIDE; |
45 | 45 |
46 virtual bool ShouldCreateUninstallEntry( | 46 virtual bool ShouldCreateUninstallEntry( |
47 const std::set<std::wstring>& options) const OVERRIDE; | 47 const std::set<std::wstring>& options) const OVERRIDE; |
48 | 48 |
49 virtual void AddDefaultShortcutProperties( | 49 virtual void AddDefaultShortcutProperties( |
50 BrowserDistribution* dist, | 50 BrowserDistribution* dist, |
51 const base::FilePath& target_exe, | 51 const base::FilePath& target_exe, |
52 ShellUtil::ShortcutProperties* properties) const OVERRIDE; | 52 ShellUtil::ShortcutProperties* properties) const OVERRIDE; |
53 | 53 |
| 54 virtual void LaunchUserExperiment(const base::FilePath& setup_path, |
| 55 const std::set<std::wstring>& options, |
| 56 BrowserDistribution* dist, |
| 57 InstallStatus status, |
| 58 bool system_level) const OVERRIDE; |
| 59 |
54 private: | 60 private: |
55 DISALLOW_COPY_AND_ASSIGN(ChromeAppHostOperations); | 61 DISALLOW_COPY_AND_ASSIGN(ChromeAppHostOperations); |
56 }; | 62 }; |
57 | 63 |
58 } // namespace installer | 64 } // namespace installer |
59 | 65 |
60 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_OPERATIONS_H_ | 66 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_OPERATIONS_H_ |
OLD | NEW |