diff options
author | tsepez <tsepez@chromium.org> | 2016-12-02 10:11:59 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-12-02 10:11:59 -0800 |
commit | 959a904f3877d338d784c573487d90de87cb25ac (patch) | |
tree | 1f79d3a84e1ff2104ed0d7e08c76aee10986a328 /core/fxcrt/fx_extension.cpp | |
parent | fa89a203151c3ea524fc4dfd7167e2a3baf332fa (diff) | |
download | pdfium-959a904f3877d338d784c573487d90de87cb25ac.tar.xz |
Tidy fx_stream.h
Group related IFX_ classes.
Move #defines to .cpp file that uses them.
Replace loose function with static method.
Review-Url: https://codereview.chromium.org/2548583004
Diffstat (limited to 'core/fxcrt/fx_extension.cpp')
-rw-r--r-- | core/fxcrt/fx_extension.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_extension.cpp b/core/fxcrt/fx_extension.cpp index aa3841e31c..1bb9a3a5f6 100644 --- a/core/fxcrt/fx_extension.cpp +++ b/core/fxcrt/fx_extension.cpp @@ -408,7 +408,7 @@ bool CFX_MemoryStream::ExpandBlocks(size_t size) { } // namespace #ifdef PDF_ENABLE_XFA -IFX_FileAccess* FX_CreateDefaultFileAccess(const CFX_WideStringC& wsPath) { +IFX_FileAccess* IFX_FileAccess::CreateDefault(const CFX_WideStringC& wsPath) { if (wsPath.GetLength() == 0) return nullptr; |