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

Unified Diff: webkit/chromeos/fileapi/file_access_permissions_unittest.cc

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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/chromeos/fileapi/file_access_permissions.cc ('k') | webkit/chromeos/fileapi/file_util_async.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/chromeos/fileapi/file_access_permissions_unittest.cc
diff --git a/webkit/chromeos/fileapi/file_access_permissions_unittest.cc b/webkit/chromeos/fileapi/file_access_permissions_unittest.cc
index b3efbfee5e9f96aff6b11708aa53190c1af45c61..e6cc9edaa35aafbee7966252dfadf8ec0574aa53 100644
--- a/webkit/chromeos/fileapi/file_access_permissions_unittest.cc
+++ b/webkit/chromeos/fileapi/file_access_permissions_unittest.cc
@@ -11,15 +11,15 @@ class FileAccessPermissionsTest : public testing::Test {
TEST_F(FileAccessPermissionsTest, FileAccessChecks) {
#if defined(OS_WIN)
- FilePath good_dir(FILE_PATH_LITERAL("c:\\root\\dir"));
- FilePath bad_dir(FILE_PATH_LITERAL("c:\\root"));
- FilePath good_file(FILE_PATH_LITERAL("c:\\root\\dir\\good_file.txt"));
- FilePath bad_file(FILE_PATH_LITERAL("c:\\root\\dir\\bad_file.txt"));
+ base::FilePath good_dir(FILE_PATH_LITERAL("c:\\root\\dir"));
+ base::FilePath bad_dir(FILE_PATH_LITERAL("c:\\root"));
+ base::FilePath good_file(FILE_PATH_LITERAL("c:\\root\\dir\\good_file.txt"));
+ base::FilePath bad_file(FILE_PATH_LITERAL("c:\\root\\dir\\bad_file.txt"));
#elif defined(OS_POSIX)
- FilePath good_dir(FILE_PATH_LITERAL("/root/dir"));
- FilePath bad_dir(FILE_PATH_LITERAL("/root"));
- FilePath good_file(FILE_PATH_LITERAL("/root/dir/good_file.txt"));
- FilePath bad_file(FILE_PATH_LITERAL("/root/dir/bad_file.txt"));
+ base::FilePath good_dir(FILE_PATH_LITERAL("/root/dir"));
+ base::FilePath bad_dir(FILE_PATH_LITERAL("/root"));
+ base::FilePath good_file(FILE_PATH_LITERAL("/root/dir/good_file.txt"));
+ base::FilePath bad_file(FILE_PATH_LITERAL("/root/dir/bad_file.txt"));
#endif
std::string extension1("ddammdhioacbehjngdmkjcjbnfginlla");
std::string extension2("jkhdjkhkhsdkfhsdkhrterwmtermeter");
« no previous file with comments | « webkit/chromeos/fileapi/file_access_permissions.cc ('k') | webkit/chromeos/fileapi/file_util_async.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698