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