| Index: chrome/installer/setup/chrome_frame_quick_enable.cc
|
| diff --git a/chrome/installer/setup/chrome_frame_quick_enable.cc b/chrome/installer/setup/chrome_frame_quick_enable.cc
|
| index 11eb578e9472cee185b1cade0e4149dfa6b03d91..6dff64e132fd7ef9464e6137799bc7804649c959 100644
|
| --- a/chrome/installer/setup/chrome_frame_quick_enable.cc
|
| +++ b/chrome/installer/setup/chrome_frame_quick_enable.cc
|
| @@ -6,8 +6,8 @@
|
|
|
| #include <windows.h>
|
|
|
| +#include "base/files/scoped_temp_dir.h"
|
| #include "base/logging.h"
|
| -#include "base/scoped_temp_dir.h"
|
| #include "base/string_util.h"
|
| #include "base/win/registry.h"
|
| #include "chrome/installer/setup/install_worker.h"
|
| @@ -81,7 +81,7 @@ InstallStatus ChromeFrameQuickEnable(const InstallationState& machine_state,
|
| LOG(ERROR) << "AddProduct failed";
|
| status = INSTALL_FAILED;
|
| } else {
|
| - ScopedTempDir temp_path;
|
| + base::ScopedTempDir temp_path;
|
| if (!temp_path.CreateUniqueTempDir()) {
|
| PLOG(ERROR) << "Failed to create Temp directory";
|
| return INSTALL_FAILED;
|
|
|