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

Unified Diff: webkit/fileapi/obfuscated_file_util_unittest.cc

Issue 12286020: Replace FilePath with base::FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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/native_file_util_unittest.cc ('k') | webkit/plugins/npapi/plugin_instance.h » ('j') | 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 946932c5d0e96329064e47c1a1ae842b4305b285..8bb8e91f6d1b8cca81c72d9455a5ddc15af50eb7 100644
--- a/webkit/fileapi/obfuscated_file_util_unittest.cc
+++ b/webkit/fileapi/obfuscated_file_util_unittest.cc
@@ -90,7 +90,7 @@ const OriginEnumerationTestRecord kOriginEnumerationTestRecords[] = {
};
FileSystemURL FileSystemURLAppend(
- const FileSystemURL& url, const FilePath::StringType& child) {
+ const FileSystemURL& url, const base::FilePath::StringType& child) {
return FileSystemURL::CreateForTest(
url.origin(), url.mount_type(), url.virtual_path().Append(child));
}
@@ -100,7 +100,7 @@ FileSystemURL FileSystemURLAppendUTF8(
return FileSystemURL::CreateForTest(
url.origin(),
url.mount_type(),
- url.virtual_path().Append(FilePath::FromUTF8Unsafe(child)));
+ url.virtual_path().Append(base::FilePath::FromUTF8Unsafe(child)));
}
FileSystemURL FileSystemURLDirName(const FileSystemURL& url) {
« no previous file with comments | « webkit/fileapi/native_file_util_unittest.cc ('k') | webkit/plugins/npapi/plugin_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698