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

Unified Diff: sandbox/win/src/win_utils.cc

Issue 1814863004: Cleanup/Remove Windows XP/Vista version checks from Windows sandbox code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More changes Created 4 years, 9 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: sandbox/win/src/win_utils.cc
diff --git a/sandbox/win/src/win_utils.cc b/sandbox/win/src/win_utils.cc
index ef4d803ab6d94c142f88e60b928d930542697503..fb108f519790b2c8e7e7040806c981261f8e7e11 100644
--- a/sandbox/win/src/win_utils.cc
+++ b/sandbox/win/src/win_utils.cc
@@ -198,10 +198,10 @@ DWORD IsReparsePoint(const base::string16& full_path) {
NOTREACHED_NT();
return error;
}
- } else if (FILE_ATTRIBUTE_REPARSE_POINT & attributes) {
+ }/* else if (FILE_ATTRIBUTE_REPARSE_POINT & attributes) {
// This is a reparse point.
return ERROR_SUCCESS;
- }
+ }*/
kylix_rd 2016/03/17 22:52:10 Ignore this change. Commented out to get Chrome to
passed_once = true;
last_pos = path.rfind(L'\\');

Powered by Google App Engine
This is Rietveld 408576698