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

Unified Diff: ui/snapshot/snapshot_aura.h

Issue 2752373002: Use PrintWindow() to implement snapshots on windows 8.1+ (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « ui/snapshot/BUILD.gn ('k') | ui/snapshot/snapshot_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..425dcf6c363224df3128272cf9eef8f2be234fa4
--- /dev/null
+++ b/ui/snapshot/snapshot_aura.h
@@ -0,0 +1,30 @@
+// 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. source_rect and target_size are in DIP.
+
+SNAPSHOT_EXPORT void GrabWindowSnapshotAndScaleAsyncAura(
+ aura::Window* 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(
+ aura::Window* window,
+ const gfx::Rect& source_rect,
+ const GrabWindowSnapshotAsyncCallback& callback);
+
+} // namespace ui
+
+#endif // UI_SNAPSHOT_SNAPSHOT_AURA_H_
« no previous file with comments | « ui/snapshot/BUILD.gn ('k') | ui/snapshot/snapshot_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698