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

Side by Side Diff: chrome/installer/util/chrome_browser_sxs_operations.h

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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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(
24 const std::set<std::wstring>& options,
25 CommandLine* uninstall_command) const OVERRIDE;
26
27 private:
28 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserSxSOperations);
29 };
30
31 } // namespace installer
32
33 #endif // CHROME_INSTALLER_UTIL_CHROME_BROWSER_SXS_OPERATIONS_H_
OLDNEW
« no previous file with comments | « chrome/installer/util/chrome_browser_operations.cc ('k') | chrome/installer/util/chrome_browser_sxs_operations.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698