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

Unified Diff: chrome_frame/dll_redirector.cc

Issue 12211108: Rename FilePath -> base::FilePath in various toplevel 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 | « chrome_frame/delete_chrome_history.cc ('k') | chrome_frame/simple_resource_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/dll_redirector.cc
diff --git a/chrome_frame/dll_redirector.cc b/chrome_frame/dll_redirector.cc
index 2bba924b48aed2155d56e3d634f7c833bfda1122..f5b6b4bca92b09ff4011c1475c17bae1de436805 100644
--- a/chrome_frame/dll_redirector.cc
+++ b/chrome_frame/dll_redirector.cc
@@ -278,12 +278,12 @@ HMODULE DllRedirector::LoadVersionedModule(Version* version) {
system_buffer[0] = 0;
if (GetModuleFileName(this_module, system_buffer,
arraysize(system_buffer)) != 0) {
- FilePath module_path(system_buffer);
+ base::FilePath module_path(system_buffer);
// For a module located in
// Foo\XXXXXXXXX\<module>.dll, load
// Foo\<version>\<module>.dll:
- FilePath module_name = module_path.BaseName();
+ base::FilePath module_name = module_path.BaseName();
module_path = module_path.DirName()
.DirName()
.Append(ASCIIToWide(version->GetString()))
« no previous file with comments | « chrome_frame/delete_chrome_history.cc ('k') | chrome_frame/simple_resource_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698