| Index: chrome/installer/util/chrome_browser_sxs_operations.cc
|
| ===================================================================
|
| --- chrome/installer/util/chrome_browser_sxs_operations.cc (revision 0)
|
| +++ chrome/installer/util/chrome_browser_sxs_operations.cc (revision 0)
|
| @@ -0,0 +1,22 @@
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "chrome/installer/util/chrome_browser_sxs_operations.h"
|
| +
|
| +#include "base/command_line.h"
|
| +#include "base/logging.h"
|
| +#include "chrome/installer/util/util_constants.h"
|
| +
|
| +namespace installer {
|
| +
|
| +void ChromeBrowserSxSOperations::AppendProductFlags(
|
| + const std::set<std::wstring>& options,
|
| + CommandLine* uninstall_command) {
|
| + DCHECK(uninstall_command);
|
| +
|
| + uninstall_command->AppendSwitch(switches::kChromeSxS);
|
| + ChromeBrowserOperations::AppendProductFlags(options, uninstall_command);
|
| +}
|
| +
|
| +} // namespace installer
|
|
|
| Property changes on: chrome\installer\util\chrome_browser_sxs_operations.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|