| Index: ui/gfx/compositor/compositor_win.cc
|
| diff --git a/ui/gfx/compositor/compositor_win.cc b/ui/gfx/compositor/compositor_win.cc
|
| index 38bf5363ae239eb42d6c490d2a064cd0503fee90..ef31e34d79ebb953c5173fb9fab858e29f14c60c 100644
|
| --- a/ui/gfx/compositor/compositor_win.cc
|
| +++ b/ui/gfx/compositor/compositor_win.cc
|
| @@ -105,7 +105,7 @@ class CompositorWin : public Compositor {
|
|
|
| virtual void Blur(const gfx::Rect& bounds) OVERRIDE;
|
|
|
| - virtual void ReadPixels(SkBitmap* bitmap) OVERRIDE;
|
| + virtual bool ReadPixels(SkBitmap* bitmap) OVERRIDE;
|
|
|
| protected:
|
| virtual void OnNotifyStart(bool clear) OVERRIDE;
|
| @@ -503,8 +503,9 @@ void CompositorWin::Blur(const gfx::Rect& bounds) {
|
| #endif
|
| }
|
|
|
| -void CompositorWin::ReadPixels(SkBitmap* bitmap) {
|
| +bool CompositorWin::ReadPixels(SkBitmap* bitmap) {
|
| NOTIMPLEMENTED();
|
| + return false;
|
| }
|
|
|
| void CompositorWin::OnWidgetSizeChanged() {
|
|
|