| Index: chrome/browser/ui/window_snapshot/window_snapshot.cc
|
| diff --git a/chrome/browser/ui/window_snapshot/window_snapshot_aura.cc b/chrome/browser/ui/window_snapshot/window_snapshot.cc
|
| similarity index 69%
|
| copy from chrome/browser/ui/window_snapshot/window_snapshot_aura.cc
|
| copy to chrome/browser/ui/window_snapshot/window_snapshot.cc
|
| index 843c89c7509edf8b4a52ec86215546e64c79e110..48bc91907c7296b626eceb52a163f0f70ef21101 100644
|
| --- a/chrome/browser/ui/window_snapshot/window_snapshot_aura.cc
|
| +++ b/chrome/browser/ui/window_snapshot/window_snapshot.cc
|
| @@ -4,16 +4,13 @@
|
|
|
| #include "chrome/browser/ui/window_snapshot/window_snapshot.h"
|
|
|
| -#include "base/logging.h"
|
| #include "ui/gfx/rect.h"
|
|
|
| namespace browser {
|
|
|
| -gfx::Rect GrabWindowSnapshot(gfx::NativeWindow window_handle,
|
| +gfx::Rect GrabWindowSnapshot(gfx::NativeWindow native_window,
|
| std::vector<unsigned char>* png_representation) {
|
| - // TODO(saintlou): Stub for Aura.
|
| - NOTIMPLEMENTED();
|
| - return gfx::Rect();
|
| + return GrabWindowSnapshot(native_window, png_representation, gfx::Rect());
|
| }
|
|
|
| } // namespace browser
|
|
|