OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ |
6 #define CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ | 6 #define CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/macros.h" |
15 #include "chrome/installer/util/app_command.h" | 15 #include "chrome/installer/util/app_command.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 namespace win { | 18 namespace win { |
19 class RegKey; | 19 class RegKey; |
20 } | 20 } |
21 } | 21 } |
22 | 22 |
23 namespace installer { | 23 namespace installer { |
24 | 24 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 protected: | 66 protected: |
67 CommandMap commands_; | 67 CommandMap commands_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(AppCommands); | 69 DISALLOW_COPY_AND_ASSIGN(AppCommands); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace installer | 72 } // namespace installer |
73 | 73 |
74 #endif // CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ | 74 #endif // CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ |
OLD | NEW |