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

Unified Diff: chrome/browser/safe_browsing/database_perftest.cc

Issue 12893: Get rid of kPathSeparator on windows. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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/browser/importer/ie_importer.cc ('k') | chrome/browser/session_history_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/database_perftest.cc
===================================================================
--- chrome/browser/safe_browsing/database_perftest.cc (revision 6271)
+++ chrome/browser/safe_browsing/database_perftest.cc (working copy)
@@ -45,7 +45,7 @@
// get an empty file for the test DB
std::wstring filename;
PathService::Get(base::DIR_TEMP, &filename);
- filename.push_back(file_util::kPathSeparator);
+ filename.push_back(FilePath::kSeparators[0]);
filename.append(ASCIIToWide(name));
if (create) {
@@ -390,7 +390,7 @@
logging::DELETE_OLD_LOG_FILE);
PathService::Get(base::DIR_TEMP, &filename_);
- filename_.push_back(file_util::kPathSeparator);
+ filename_.push_back(FilePath::kSeparators[0]);
filename_.append(name);
}
« no previous file with comments | « chrome/browser/importer/ie_importer.cc ('k') | chrome/browser/session_history_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698