| 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 #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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 virtual void ReadOptions(const CommandLine& uninstall_command, | 27 virtual void ReadOptions(const CommandLine& uninstall_command, |
| 28 std::set<std::wstring>* options) const OVERRIDE; | 28 std::set<std::wstring>* options) const OVERRIDE; |
| 29 | 29 |
| 30 virtual void AddKeyFiles(const std::set<std::wstring>& options, | 30 virtual void AddKeyFiles(const std::set<std::wstring>& options, |
| 31 std::vector<FilePath>* key_files) const OVERRIDE; | 31 std::vector<FilePath>* key_files) const OVERRIDE; |
| 32 | 32 |
| 33 virtual void AddComDllList( | 33 virtual void AddComDllList( |
| 34 const std::set<std::wstring>& options, | 34 const std::set<std::wstring>& options, |
| 35 std::vector<FilePath>* com_dll_list) const OVERRIDE; | 35 std::vector<FilePath>* com_dll_list) const OVERRIDE; |
| 36 | 36 |
| 37 virtual void AppendProductFlags( | 37 virtual void AppendUninstallFlags( |
| 38 const std::set<std::wstring>& options, | 38 const std::set<std::wstring>& options, |
| 39 CommandLine* uninstall_command) const OVERRIDE; | 39 CommandLine* cmd_line) const OVERRIDE; |
| 40 |
| 41 virtual void AppendRenameFlags( |
| 42 const std::set<std::wstring>& options, |
| 43 CommandLine* cmd_line) const OVERRIDE; |
| 40 | 44 |
| 41 virtual bool SetChannelFlags(const std::set<std::wstring>& options, | 45 virtual bool SetChannelFlags(const std::set<std::wstring>& options, |
| 42 bool set, | 46 bool set, |
| 43 ChannelInfo* channel_info) const OVERRIDE; | 47 ChannelInfo* channel_info) const OVERRIDE; |
| 44 | 48 |
| 45 virtual bool ShouldCreateUninstallEntry( | 49 virtual bool ShouldCreateUninstallEntry( |
| 46 const std::set<std::wstring>& options) const OVERRIDE; | 50 const std::set<std::wstring>& options) const OVERRIDE; |
| 47 | 51 |
| 48 private: | 52 private: |
| 49 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserOperations); | 53 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserOperations); |
| 50 }; | 54 }; |
| 51 | 55 |
| 52 } // namespace installer | 56 } // namespace installer |
| 53 | 57 |
| 54 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ | 58 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_OPERATIONS_H_ |
| OLD | NEW |