OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_INSTALLER_UTIL_CHROME_BROWSER_SXS_OPERATIONS_H_ |
| 6 #define CHROME_INSTALLER_UTIL_CHROME_BROWSER_SXS_OPERATIONS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include <set> |
| 10 #include <string> |
| 11 |
| 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" |
| 14 #include "chrome/installer/util/chrome_browser_operations.h" |
| 15 |
| 16 namespace installer { |
| 17 |
| 18 // Operations specific to Chrome SxS; see ProductOperations for general info. |
| 19 class ChromeBrowserSxSOperations : public ChromeBrowserOperations { |
| 20 public: |
| 21 ChromeBrowserSxSOperations() {} |
| 22 |
| 23 virtual void AppendProductFlags(const std::set<std::wstring>& options, |
| 24 CommandLine* uninstall_command) OVERRIDE; |
| 25 |
| 26 private: |
| 27 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserSxSOperations); |
| 28 }; |
| 29 |
| 30 } // namespace installer |
| 31 |
| 32 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_SXS_OPERATIONS_H_ |
OLD | NEW |