Index: chrome/common/win_safe_util.cc |
diff --git a/chrome/common/win_safe_util.cc b/chrome/common/win_safe_util.cc |
index ff65a7eb5e89dafa3ce1a1ddbb5537f09faa2ca3..2a5813ab2296d45fa33addd22f68ae67fe399b78 100644 |
--- a/chrome/common/win_safe_util.cc |
+++ b/chrome/common/win_safe_util.cc |
@@ -7,12 +7,12 @@ |
#include "chrome/common/win_safe_util.h" |
-#include "app/win/shell.h" |
#include "base/file_path.h" |
#include "base/logging.h" |
#include "base/path_service.h" |
#include "base/string_util.h" |
#include "base/win/scoped_comptr.h" |
+#include "ui/base/win/shell.h" |
namespace { |
@@ -70,7 +70,7 @@ bool SaferOpenItemViaShell(HWND hwnd, const std::wstring& window_title, |
NOTREACHED(); |
return false; |
} |
- return app::win::OpenItemViaShell(full_path); |
+ return ui::win::OpenItemViaShell(full_path); |
} |
attachment_services->SetClientGuid(kClientID); |
@@ -112,7 +112,7 @@ bool SaferOpenItemViaShell(HWND hwnd, const std::wstring& window_title, |
return false; |
} |
} |
- return app::win::OpenItemViaShellNoZoneCheck(full_path); |
+ return ui::win::OpenItemViaShellNoZoneCheck(full_path); |
} |
bool SetInternetZoneIdentifier(const FilePath& full_path, |