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

Unified Diff: chrome_frame/test_utils.cc

Issue 271099: Re-try r29078: Remove some deprecated file_util wstring functions. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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/test_utils.h ('k') | net/tools/crash_cache/crash_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test_utils.cc
===================================================================
--- chrome_frame/test_utils.cc (revision 29088)
+++ chrome_frame/test_utils.cc (working copy)
@@ -15,17 +15,18 @@
// Statics
-std::wstring ScopedChromeFrameRegistrar::GetChromeFrameBuildPath() {
- std::wstring build_path;
+FilePath ScopedChromeFrameRegistrar::GetChromeFrameBuildPath() {
+ FilePath build_path;
PathService::Get(chrome::DIR_APP, &build_path);
- file_util::AppendToPath(&build_path, L"servers\\npchrome_tab.dll");
+ build_path = build_path.Append(L"servers").
+ Append(L"npchrome_tab.dll");
file_util::PathExists(build_path);
return build_path;
}
void ScopedChromeFrameRegistrar::RegisterDefaults() {
- std::wstring dll_path_ = GetChromeFrameBuildPath();
- RegisterAtPath(dll_path_);
+ FilePath dll_path = GetChromeFrameBuildPath();
+ RegisterAtPath(dll_path.value());
}
void ScopedChromeFrameRegistrar::RegisterAtPath(
@@ -56,7 +57,7 @@
// Non-statics
ScopedChromeFrameRegistrar::ScopedChromeFrameRegistrar() {
- original_dll_path_ = GetChromeFrameBuildPath();
+ original_dll_path_ = GetChromeFrameBuildPath().ToWStringHack();
RegisterChromeFrameAtPath(original_dll_path_);
}
« no previous file with comments | « chrome_frame/test_utils.h ('k') | net/tools/crash_cache/crash_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698