| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/installer/setup/install_worker.h" | 5 #include "chrome/installer/setup/install_worker.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 12 #include "base/version.h" | 11 #include "base/version.h" |
| 13 #include "base/win/registry.h" | 12 #include "base/win/registry.h" |
| 14 #include "chrome/common/chrome_constants.h" | 13 #include "chrome/common/chrome_constants.h" |
| 15 #include "chrome/installer/setup/installer_state.h" | 14 #include "chrome/installer/setup/installer_state.h" |
| 16 #include "chrome/installer/setup/setup_util.h" | 15 #include "chrome/installer/setup/setup_util.h" |
| 17 #include "chrome/installer/util/create_reg_key_work_item.h" | 16 #include "chrome/installer/util/create_reg_key_work_item.h" |
| 18 #include "chrome/installer/util/delete_reg_key_work_item.h" | 17 #include "chrome/installer/util/delete_reg_key_work_item.h" |
| 19 #include "chrome/installer/util/delete_tree_work_item.h" | 18 #include "chrome/installer/util/delete_tree_work_item.h" |
| 20 #include "chrome/installer/util/google_update_constants.h" | 19 #include "chrome/installer/util/google_update_constants.h" |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 AddInstallWorkItems(*installation_state.get(), | 313 AddInstallWorkItems(*installation_state.get(), |
| 315 *installer_state.get(), | 314 *installer_state.get(), |
| 316 setup_path_, | 315 setup_path_, |
| 317 archive_path_, | 316 archive_path_, |
| 318 src_path_, | 317 src_path_, |
| 319 temp_dir_, | 318 temp_dir_, |
| 320 current_version_.get(), | 319 current_version_.get(), |
| 321 *new_version_.get(), | 320 *new_version_.get(), |
| 322 &work_item_list); | 321 &work_item_list); |
| 323 } | 322 } |
| OLD | NEW |