Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5975)

Unified Diff: chrome/common/win_safe_util.cc

Issue 7231016: Move app/win/* files to base/win/, ui/base/win and chrome/common/ directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..dfc155ae59b506bfd7207ee65011a70e667c6e42 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 "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 base::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 base::win::OpenItemViaShellNoZoneCheck(full_path);
}
bool SetInternetZoneIdentifier(const FilePath& full_path,

Powered by Google App Engine
This is Rietveld 408576698