| Index: third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
|
| index ac85b2a307c5f9cfb9646e971b940b702cc4a459..4f44ec181f0dbd719fd17d28e2b4eab7ce9dd0a3 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
|
| @@ -97,11 +97,11 @@ void RecordingImageBufferSurface::fallBackToRasterCanvas()
|
|
|
| }
|
|
|
| -PassRefPtr<SkImage> RecordingImageBufferSurface::newImageSnapshot()
|
| +PassRefPtr<SkImage> RecordingImageBufferSurface::newImageSnapshot(AccelerationHint hint)
|
| {
|
| if (!m_fallbackSurface)
|
| fallBackToRasterCanvas();
|
| - return m_fallbackSurface->newImageSnapshot();
|
| + return m_fallbackSurface->newImageSnapshot(hint);
|
| }
|
|
|
| SkCanvas* RecordingImageBufferSurface::canvas()
|
|
|