| 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_FRAME_OPERATIONS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_ |
| 6 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_ | 6 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 virtual void AddDefaultShortcutProperties( | 46 virtual void AddDefaultShortcutProperties( |
| 47 BrowserDistribution* dist, | 47 BrowserDistribution* dist, |
| 48 const base::FilePath& target_exe, | 48 const base::FilePath& target_exe, |
| 49 ShellUtil::ShortcutProperties* properties) const OVERRIDE; | 49 ShellUtil::ShortcutProperties* properties) const OVERRIDE; |
| 50 | 50 |
| 51 virtual void LaunchUserExperiment(const base::FilePath& setup_path, | 51 virtual void LaunchUserExperiment(const base::FilePath& setup_path, |
| 52 const std::set<string16>& options, | 52 const std::set<string16>& options, |
| 53 InstallStatus status, | 53 InstallStatus status, |
| 54 bool system_level) const OVERRIDE; | 54 bool system_level) const OVERRIDE; |
| 55 | 55 |
| 56 protected: | |
| 57 void NormalizeOptions(std::set<string16>* options) const; | |
| 58 | |
| 59 private: | 56 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(ChromeFrameOperations); | 57 DISALLOW_COPY_AND_ASSIGN(ChromeFrameOperations); |
| 61 }; | 58 }; |
| 62 | 59 |
| 63 } // namespace installer | 60 } // namespace installer |
| 64 | 61 |
| 65 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_ | 62 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_ |
| OLD | NEW |