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

Unified Diff: tools/generate_library_loader/generate_library_loader.py

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (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 | « tools/android/md5sum/md5sum.cc ('k') | tools/imagediff/image_diff.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/generate_library_loader/generate_library_loader.py
diff --git a/tools/generate_library_loader/generate_library_loader.py b/tools/generate_library_loader/generate_library_loader.py
index 5629562553b5a420bc26ff50e148d9bbbba6a389..a39e9ea25af40b92a8a21347fa621a14083e81ca 100755
--- a/tools/generate_library_loader/generate_library_loader.py
+++ b/tools/generate_library_loader/generate_library_loader.py
@@ -99,7 +99,7 @@ bool %(class_name)s::Load(const std::string& library_name) {
}
#if defined(%(unique_prefix)s_DLOPEN)
- library_ = base::LoadNativeLibrary(FilePath(library_name), NULL);
+ library_ = base::LoadNativeLibrary(base::FilePath(library_name), NULL);
if (!library_)
return false;
#endif
« no previous file with comments | « tools/android/md5sum/md5sum.cc ('k') | tools/imagediff/image_diff.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698