#ifndef UI_SNAPSHOT_SNAPSHOT_AURA_H_
#define UI_SNAPSHOT_SNAPSHOT_AURA_H_
#include "ui/snapshot/snapshot.h"
namespace ui {
class Layer;
SNAPSHOT_EXPORT void GrabWindowSnapshotAndScaleAura(
aura::Window* window,
const gfx::Rect& source_rect,
const gfx::Size& target_size,
GrabSnapshotImageCallback callback);
SNAPSHOT_EXPORT void GrabWindowSnapshotAura(aura::Window* window,
const gfx::Rect& source_rect,
GrabSnapshotImageCallback callback);
SNAPSHOT_EXPORT void GrabLayerSnapshot(Layer* layer,
const gfx::Rect& source_rect,
GrabSnapshotImageCallback callback);
}
#endif