| 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 #include "chrome/installer/setup/chrome_frame_quick_enable.h" | 5 #include "chrome/installer/setup/chrome_frame_quick_enable.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/win/registry.h" | 12 #include "base/win/registry.h" |
| 13 #include "chrome/installer/setup/install_worker.h" | 13 #include "chrome/installer/setup/install_worker.h" |
| 14 #include "chrome/installer/util/google_update_constants.h" | 14 #include "chrome/installer/util/google_update_constants.h" |
| 15 #include "chrome/installer/util/install_util.h" | 15 #include "chrome/installer/util/install_util.h" |
| 16 #include "chrome/installer/util/installation_state.h" | 16 #include "chrome/installer/util/installation_state.h" |
| 17 #include "chrome/installer/util/installer_state.h" | 17 #include "chrome/installer/util/installer_state.h" |
| 18 #include "chrome/installer/util/product.h" | 18 #include "chrome/installer/util/product.h" |
| 19 #include "chrome/installer/util/work_item.h" | 19 #include "chrome/installer/util/work_item.h" |
| 20 #include "chrome/installer/util/work_item_list.h" | 20 #include "chrome/installer/util/work_item_list.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 DCHECK_EQ(FIRST_INSTALL_SUCCESS, status); | 136 DCHECK_EQ(FIRST_INSTALL_SUCCESS, status); |
| 137 VLOG(1) << "Chrome Frame successfully activated."; | 137 VLOG(1) << "Chrome Frame successfully activated."; |
| 138 } | 138 } |
| 139 } | 139 } |
| 140 } | 140 } |
| 141 | 141 |
| 142 return status; | 142 return status; |
| 143 } | 143 } |
| 144 | 144 |
| 145 } // namespace installer | 145 } // namespace installer |
| OLD | NEW |