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

Side by Side Diff: chrome/installer/util/chrome_frame_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_FRAME_OPERATIONS_H_
6 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_
7 #pragma once
8
9 #include <set>
10 #include <string>
11 #include <vector>
12
13 #include "base/basictypes.h"
14 #include "base/file_path.h"
15 #include "base/compiler_specific.h"
16 #include "chrome/installer/util/product_operations.h"
17
18 namespace installer {
19
20 class ChromeFrameOperations : public ProductOperations {
21 public:
22 ChromeFrameOperations() {}
23
24 virtual void ReadOptions(const MasterPreferences& prefs,
25 std::set<std::wstring>* options) OVERRIDE;
26
27 virtual void ReadOptions(const CommandLine& uninstall_command,
28 std::set<std::wstring>* options) OVERRIDE;
29
30 virtual void AddKeyFiles(const std::set<std::wstring>& options,
31 std::vector<FilePath>* key_files) OVERRIDE;
32
33 virtual void AddComDllList(const std::set<std::wstring>& options,
34 std::vector<FilePath>* com_dll_list) OVERRIDE;
35
36 virtual void AppendProductFlags(const std::set<std::wstring>& options,
37 CommandLine* uninstall_command) OVERRIDE;
38
39 virtual bool SetChannelFlags(const std::set<std::wstring>& options,
40 bool set,
41 ChannelInfo* channel_info) const OVERRIDE;
42
43 virtual bool ShouldCreateUninstallEntry(
44 const std::set<std::wstring>& options) const OVERRIDE;
45
46 private:
47 DISALLOW_COPY_AND_ASSIGN(ChromeFrameOperations);
48 };
49
50 } // namespace installer
51
52 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_OPERATIONS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698