| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <windows.h> | 9 #include <windows.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <utility> | 13 #include <utility> |
| 14 | 14 |
| 15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
| 16 #include "chrome/installer/util/app_command.h" | 16 #include "chrome/installer/util/app_command.h" |
| 17 | 17 |
| 18 class WorkItemList; | |
| 19 | |
| 20 namespace base { | 18 namespace base { |
| 21 namespace win { | 19 namespace win { |
| 22 class RegKey; | 20 class RegKey; |
| 23 } | 21 } |
| 24 } | 22 } |
| 25 | 23 |
| 26 namespace installer { | 24 namespace installer { |
| 27 | 25 |
| 28 // A collection of AppCommand objects. | 26 // A collection of AppCommand objects. |
| 29 class AppCommands { | 27 class AppCommands { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 64 |
| 67 protected: | 65 protected: |
| 68 CommandMap commands_; | 66 CommandMap commands_; |
| 69 | 67 |
| 70 DISALLOW_COPY_AND_ASSIGN(AppCommands); | 68 DISALLOW_COPY_AND_ASSIGN(AppCommands); |
| 71 }; | 69 }; |
| 72 | 70 |
| 73 } // namespace installer | 71 } // namespace installer |
| 74 | 72 |
| 75 #endif // CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ | 73 #endif // CHROME_INSTALLER_UTIL_APP_COMMANDS_H_ |
| OLD | NEW |