| Commit-Queue | +2 |
Abstract AGG behind RenderDeviceDriverIface:Continuation.Tom SepezDouble colon.
Done
virtual bool ContinueDIBits(Continuation* handle,Tom SepezRename to "continuation" here and in .cpp files.
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: core/fxge/renderdevicedriver_iface.h
Insertions: 1, Deletions: 1.
@@ -113,7 +113,7 @@
const CFX_Matrix& matrix,
const FXDIB_ResampleOptions& options,
BlendMode blend_type) = 0;
- virtual bool ContinueDIBits(Continuation* handle,
+ virtual bool ContinueDIBits(Continuation* continuation,
PauseIndicatorIface* pPause);
virtual bool DrawDeviceText(pdfium::span<const TextCharPos> pCharPos,
CFX_Font* font,
```
```
The name of the file: core/fxge/renderdevicedriver_iface.cpp
Insertions: 1, Deletions: 1.
@@ -44,7 +44,7 @@
return RetainPtr<const CFX_DIBitmap>();
}
-bool RenderDeviceDriverIface::ContinueDIBits(Continuation* handle,
+bool RenderDeviceDriverIface::ContinueDIBits(Continuation* continuation,
PauseIndicatorIface* pPause) {
return false;
}
```
Abstract AGG behind RenderDeviceDriverIface::Continuation.
Although the higher layers didn't necessarily interact with AGG
directly, this abstraction removes some of the impression that they
did, by getting the string 'Agg' out of the names.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |