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

Unified Diff: base/platform_file_win.cc

Issue 6646036: wstring: remove wstring method from PlatformFile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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 | « base/platform_file_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/platform_file_win.cc
diff --git a/base/platform_file_win.cc b/base/platform_file_win.cc
index f9eb23473db408d65f8a08a7167393c312d44f19..0cb3e53831b26bf32431e7c7800d760871b8a3bd 100644
--- a/base/platform_file_win.cc
+++ b/base/platform_file_win.cc
@@ -104,12 +104,6 @@ PlatformFile CreatePlatformFile(const FilePath& name,
return file;
}
-PlatformFile CreatePlatformFile(const std::wstring& name, int flags,
- bool* created) {
- return CreatePlatformFile(FilePath::FromWStringHack(name), flags,
- created, NULL);
-}
-
bool ClosePlatformFile(PlatformFile file) {
base::ThreadRestrictions::AssertIOAllowed();
return (CloseHandle(file) != 0);
« no previous file with comments | « base/platform_file_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698