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

Unified Diff: webkit/fileapi/obfuscated_file_util_unittest.cc

Issue 9320059: Define FilePath::NormalizePathSeparators on all platforms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 8 years, 10 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
« no previous file with comments | « webkit/fileapi/isolated_context_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/obfuscated_file_util_unittest.cc
diff --git a/webkit/fileapi/obfuscated_file_util_unittest.cc b/webkit/fileapi/obfuscated_file_util_unittest.cc
index 51e30f6e8c91ae05444696d0ba5ac9eddce174c5..cc21024f9ca2fd1f87be59e4c8a535d2a44c7f05 100644
--- a/webkit/fileapi/obfuscated_file_util_unittest.cc
+++ b/webkit/fileapi/obfuscated_file_util_unittest.cc
@@ -1200,9 +1200,7 @@ TEST_F(ObfuscatedFileUtilTest, TestMigration) {
SCOPED_TRACE(testing::Message() << "Validating kMigrationTestPath " << i);
const test::TestCaseRecord& test_case = test::kRegularTestCases[i];
FilePath local_data_path = new_root.Append(test_case.path);
-#if defined(OS_WIN)
- local_data_path = local_data_path.NormalizeWindowsPathSeparators();
-#endif
+ local_data_path = local_data_path.NormalizePathSeparators();
scoped_ptr<FileSystemOperationContext> context(NewContext(NULL));
base::PlatformFileInfo ofu_file_info;
FilePath data_path;
« no previous file with comments | « webkit/fileapi/isolated_context_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698