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

Unified Diff: core/fxcrt/fx_stream.h

Issue 2419433004: Clean up fx_basic_util a little (Closed)
Patch Set: Another method deletion Created 4 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
Index: core/fxcrt/fx_stream.h
diff --git a/core/fxcrt/fx_stream.h b/core/fxcrt/fx_stream.h
index 5a5a650650ccf5c38a571697a8cbb97f7f19c321..baa413580778ab4db684faeb9570868d6c55c45a 100644
--- a/core/fxcrt/fx_stream.h
+++ b/core/fxcrt/fx_stream.h
@@ -11,13 +11,7 @@
#include "core/fxcrt/fx_system.h"
void* FX_OpenFolder(const FX_CHAR* path);
-void* FX_OpenFolder(const FX_WCHAR* path);
-FX_BOOL FX_GetNextFile(void* handle,
- CFX_ByteString& filename,
- FX_BOOL& bFolder);
-FX_BOOL FX_GetNextFile(void* handle,
- CFX_WideString& filename,
- FX_BOOL& bFolder);
+bool FX_GetNextFile(void* handle, CFX_ByteString& filename, bool& bFolder);
Tom Sepez 2016/10/12 21:02:56 can this be const CFX_BytString& filename? can thi
npm 2016/10/12 22:13:19 Cannot be const. Changed to CFX_BytString* filenam
void FX_CloseFolder(void* handle);
FX_WCHAR FX_GetFolderSeparator();

Powered by Google App Engine
This is Rietveld 408576698