Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
add TODO for issue #1759
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsanjose committed Oct 3, 2012
1 parent 39a560a commit 150e300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appshell/appshell_extensions_mac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ int32 MakeDir(ExtensionString path, int32 mode)
NSError* error = nil;
NSString* pathStr = [NSString stringWithUTF8String:path.c_str()];

// TODO: honor mode
// TODO (issue #1759): honor mode
[[NSFileManager defaultManager] createDirectoryAtPath:pathStr withIntermediateDirectories:FALSE attributes:nil error:&error];

return ConvertNSErrorCode(error, false);
Expand Down
1 change: 1 addition & 0 deletions appshell/appshell_extensions_win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ int32 ReadDir(ExtensionString path, CefRefPtr<CefListValue>& directoryContents)

int32 MakeDir(ExtensionString path, int32 mode)
{
// TODO (issue #1759): honor mode
if (!CreateDirectory(path.c_str(), NULL))
return ConvertWinErrorCode(GetLastError(), false);

Expand Down

0 comments on commit 150e300

Please sign in to comment.