Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5531)

Unified Diff: chrome/installer/util/chrome_browser_sxs_operations.cc

Issue 6288009: More installer refactoring in the interest of fixing some bugs and cleaning t... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) const {
+ 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
« no previous file with comments | « chrome/installer/util/chrome_browser_sxs_operations.h ('k') | chrome/installer/util/chrome_frame_distribution.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698