Unreviewed changes
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: core/fxge/cfx_glyphbitmap.cpp
Insertions: 1, Deletions: 1.
@@ -9,7 +9,7 @@
#include "core/fxge/dib/cfx_dibitmap.h"
CFX_GlyphBitmap::CFX_GlyphBitmap(int left, int top)
- : left_(left), top_(top), bitmap_(pdfium::MakeRetain<CFX_DIBitmap>()) {}
+ : CFX_GlyphBitmap(left, top, pdfium::MakeRetain<CFX_DIBitmap>()) {}
CFX_GlyphBitmap::CFX_GlyphBitmap(int left,
int top,
```
Change information
Commit message:
Remove CFX_DIBitmap::TakeOver().
No need to copy when the only caller has an unique original. Pass it
to a new CFX_GlyphBitmap constructor instead.
Change-Id: Ia35947c482ac489a2a15a41b3391ab145d9b05c4
Files:
- M core/fpdfapi/render/cpdf_type3cache.cpp
- M core/fxge/cfx_glyphbitmap.cpp
- M core/fxge/cfx_glyphbitmap.h
- M core/fxge/dib/cfx_dibitmap.cpp
- M core/fxge/dib/cfx_dibitmap.h
Change size: S
Delta: 5 files changed, 10 insertions(+), 16 deletions(-)
Branch: refs/heads/main
Submit Requirements:
Code-Review: +1 by Lei Zhang