summaryrefslogtreecommitdiff
path: root/core/src/fxcrt/fx_basic_bstring.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-02-05 17:33:27 -0800
committerTom Sepez <tsepez@chromium.org>2015-02-05 17:33:27 -0800
commit68ee086a1f61dd9a886c96dae8d30de7c9d535fb (patch)
tree9d59ba1958663bd204cf64d484afe94d8e5feaf0 /core/src/fxcrt/fx_basic_bstring.cpp
parente3dbe4db199586bee83f7db3ace142d4c71d0a18 (diff)
downloadpdfium-68ee086a1f61dd9a886c96dae8d30de7c9d535fb.tar.xz
Kill off some more unreachable fopen's.
The bstring's read from file is unused. The load from file paths aren't taken. R=jam@chromium.org Review URL: https://codereview.chromium.org/902943003
Diffstat (limited to 'core/src/fxcrt/fx_basic_bstring.cpp')
-rw-r--r--core/src/fxcrt/fx_basic_bstring.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp
index 39104e29f6..5c8a2fa8f3 100644
--- a/core/src/fxcrt/fx_basic_bstring.cpp
+++ b/core/src/fxcrt/fx_basic_bstring.cpp
@@ -936,22 +936,6 @@ void CFX_ByteString::SetAt(FX_STRSIZE nIndex, FX_CHAR ch)
CopyBeforeWrite();
m_pData->m_String[nIndex] = ch;
}
-CFX_ByteString CFX_ByteString::LoadFromFile(FX_BSTR filename)
-{
- FXSYS_FILE* file = FXSYS_fopen(CFX_ByteString(filename), "rb");
- if (file == NULL) {
- return CFX_ByteString();
- }
- FXSYS_fseek(file, 0, FXSYS_SEEK_END);
- int len = FXSYS_ftell(file);
- FXSYS_fseek(file, 0, FXSYS_SEEK_SET);
- CFX_ByteString str;
- FX_LPSTR buf = str.GetBuffer(len);
- FXSYS_fread(buf, 1, len, file);
- str.ReleaseBuffer(len);
- FXSYS_fclose(file);
- return str;
-}
CFX_WideString CFX_ByteString::UTF8Decode() const
{
CFX_UTF8Decoder decoder;