| OLD | NEW |
| (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 // Support for Chrome Frame quick enable. | |
| 6 | |
| 7 #ifndef CHROME_INSTALLER_SETUP_CHROME_FRAME_QUICK_ENABLE_H_ | |
| 8 #define CHROME_INSTALLER_SETUP_CHROME_FRAME_QUICK_ENABLE_H_ | |
| 9 | |
| 10 #include "chrome/installer/util/util_constants.h" | |
| 11 | |
| 12 namespace installer { | |
| 13 | |
| 14 class InstallationState; | |
| 15 class InstallerState; | |
| 16 | |
| 17 // Installs Chrome Frame in the same location as Chrome is currently installed | |
| 18 // in. Setup is assumed to be running from the Installer directory. | |
| 19 InstallStatus ChromeFrameQuickEnable(const InstallationState& machine_state, | |
| 20 InstallerState* installer_state); | |
| 21 | |
| 22 } // namespace installer | |
| 23 | |
| 24 #endif // CHROME_INSTALLER_SETUP_CHROME_FRAME_QUICK_ENABLE_H_ | |
| OLD | NEW |