Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: ui/snapshot/snapshot_aura.h

Issue 2752373002: Use PrintWindow() to implement snapshots on windows 8.1+ (Closed)
Patch Set: cleanup Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/snapshot/snapshot_aura.h
diff --git a/ui/snapshot/snapshot_aura.h b/ui/snapshot/snapshot_aura.h
new file mode 100644
index 0000000000000000000000000000000000000000..c0786b775c0b4a6fa15e149fafec26f441e70ce6
--- /dev/null
+++ b/ui/snapshot/snapshot_aura.h
@@ -0,0 +1,42 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef UI_SNAPSHOT_SNAPSHOT_AURA_H_
+#define UI_SNAPSHOT_SNAPSHOT_AURA_H_
+
+#include "ui/snapshot/snapshot.h"
+
+namespace ui {
+
+// These functions are identical to those in snapshot.h, except they're
+// guaranteed to read the frame using an Aura CopyOutputRequest and not the
+// native windowing system.
+SNAPSHOT_EXPORT bool GrabWindowSnapshotAura(gfx::NativeWindow window,
sky 2017/03/23 03:29:13 As these functions are only for aura can these tak
+ const gfx::Rect& snapshot_bounds,
sky 2017/03/23 03:29:13 Are the bounds in these functions pixels or dips?
+ gfx::Image* image);
+
+SNAPSHOT_EXPORT bool GrabViewSnapshotAura(gfx::NativeView view,
+ const gfx::Rect& snapshot_bounds,
+ gfx::Image* image);
+
+SNAPSHOT_EXPORT void GrabWindowSnapshotAndScaleAsyncAura(
+ gfx::NativeWindow window,
+ const gfx::Rect& source_rect,
+ const gfx::Size& target_size,
+ scoped_refptr<base::TaskRunner> background_task_runner,
+ const GrabWindowSnapshotAsyncCallback& callback);
+
+SNAPSHOT_EXPORT void GrabWindowSnapshotAsyncAura(
+ gfx::NativeWindow window,
+ const gfx::Rect& source_rect,
+ const GrabWindowSnapshotAsyncCallback& callback);
+
+SNAPSHOT_EXPORT void GrabViewSnapshotAsyncAura(
+ gfx::NativeView view,
+ const gfx::Rect& source_rect,
+ const GrabWindowSnapshotAsyncCallback& callback);
+
+} // namespace ui
+
+#endif // UI_SNAPSHOT_SNAPSHOT_AURA_H_

Powered by Google App Engine
This is Rietveld 408576698