Chromium Code Reviews| 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 // This file contains the definitions of the installer functions that build | 5 // This file contains the definitions of the installer functions that build |
| 6 // the WorkItemList used to install the application. | 6 // the WorkItemList used to install the application. |
| 7 | 7 |
| 8 #include "chrome/installer/setup/install_worker.h" | 8 #include "chrome/installer/setup/install_worker.h" |
| 9 | 9 |
| 10 #include <shlobj.h> | 10 #include <shlobj.h> |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 #include "chrome/installer/util/google_update_constants.h" | 28 #include "chrome/installer/util/google_update_constants.h" |
| 29 #include "chrome/installer/util/helper.h" | 29 #include "chrome/installer/util/helper.h" |
| 30 #include "chrome/installer/util/installation_state.h" | 30 #include "chrome/installer/util/installation_state.h" |
| 31 #include "chrome/installer/util/installer_state.h" | 31 #include "chrome/installer/util/installer_state.h" |
| 32 #include "chrome/installer/util/install_util.h" | 32 #include "chrome/installer/util/install_util.h" |
| 33 #include "chrome/installer/util/product.h" | 33 #include "chrome/installer/util/product.h" |
| 34 #include "chrome/installer/util/set_reg_value_work_item.h" | 34 #include "chrome/installer/util/set_reg_value_work_item.h" |
| 35 #include "chrome/installer/util/shell_util.h" | 35 #include "chrome/installer/util/shell_util.h" |
| 36 #include "chrome/installer/util/util_constants.h" | 36 #include "chrome/installer/util/util_constants.h" |
| 37 #include "chrome/installer/util/work_item_list.h" | 37 #include "chrome/installer/util/work_item_list.h" |
| 38 | 38 #include "chrome_frame/chrome_tab.h" |
|
grt (UTC plus 2)
2011/10/18 15:56:24
looks like you'll need to add "+chrome_frame" to c
robertshield
2011/10/18 17:31:10
Yeah, doing the right thing is rarely easier :-)
| |
| 39 #include "chrome_tab.h" // NOLINT | |
| 40 | 39 |
| 41 using base::win::RegKey; | 40 using base::win::RegKey; |
| 42 | 41 |
| 43 namespace installer { | 42 namespace installer { |
| 44 | 43 |
| 45 // Local helper to call AddRegisterComDllWorkItems for all DLLs in a set of | 44 // Local helper to call AddRegisterComDllWorkItems for all DLLs in a set of |
| 46 // products managed by a given package. | 45 // products managed by a given package. |
| 47 void AddRegisterComDllWorkItemsForPackage(const InstallerState& installer_state, | 46 void AddRegisterComDllWorkItemsForPackage(const InstallerState& installer_state, |
| 48 const Version* old_version, | 47 const Version* old_version, |
| 49 const Version& new_version, | 48 const Version& new_version, |
| (...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1220 } else { | 1219 } else { |
| 1221 DCHECK(operation == REMOVE_COMMAND); | 1220 DCHECK(operation == REMOVE_COMMAND); |
| 1222 work_item_list->AddDeleteRegKeyWorkItem(installer_state.root_key(), | 1221 work_item_list->AddDeleteRegKeyWorkItem(installer_state.root_key(), |
| 1223 cmd_key)->set_log_message( | 1222 cmd_key)->set_log_message( |
| 1224 "removing quick-enable-cf command"); | 1223 "removing quick-enable-cf command"); |
| 1225 } | 1224 } |
| 1226 } | 1225 } |
| 1227 } | 1226 } |
| 1228 | 1227 |
| 1229 } // namespace installer | 1228 } // namespace installer |
| OLD | NEW |