OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/window_snapshot/window_snapshot.h" | 5 #include "chrome/browser/ui/window_snapshot/window_snapshot.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "third_party/skia/include/core/SkBitmap.h" | 8 #include "third_party/skia/include/core/SkBitmap.h" |
9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
10 #include "ui/compositor/compositor.h" | 10 #include "ui/compositor/compositor.h" |
11 #include "ui/compositor/dip_util.h" | 11 #include "ui/compositor/dip_util.h" |
12 #include "ui/compositor/layer.h" | 12 #include "ui/compositor/layer.h" |
13 #include "ui/gfx/codec/png_codec.h" | 13 #include "ui/gfx/codec/png_codec.h" |
14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
15 | 15 |
16 namespace chrome { | 16 namespace chrome { |
17 namespace internal { | |
18 | 17 |
19 bool GrabWindowSnapshot(gfx::NativeWindow window, | 18 bool GrabAuraCompositorSnapshot(aura::Window* window, |
20 std::vector<unsigned char>* png_representation, | 19 std::vector<unsigned char>* png_representation, |
21 const gfx::Rect& snapshot_bounds) { | 20 const gfx::Rect& snapshot_bounds) { |
22 ui::Compositor* compositor = window->layer()->GetCompositor(); | 21 ui::Compositor* compositor = window->layer()->GetCompositor(); |
23 | 22 |
24 gfx::Rect read_pixels_bounds = snapshot_bounds; | 23 gfx::Rect read_pixels_bounds = snapshot_bounds; |
25 | 24 |
26 // When not in compact mode we must take into account the window's position on | 25 // When not in compact mode we must take into account the window's position on |
27 // the desktop. | 26 // the desktop. |
28 read_pixels_bounds.Offset(window->bounds().OffsetFromOrigin()); | 27 read_pixels_bounds.Offset(window->bounds().OffsetFromOrigin()); |
29 gfx::Rect read_pixels_bounds_in_pixel = | 28 gfx::Rect read_pixels_bounds_in_pixel = |
(...skipping 13 matching lines...) Expand all Loading... |
43 unsigned char* pixels = reinterpret_cast<unsigned char*>(bitmap.getPixels()); | 42 unsigned char* pixels = reinterpret_cast<unsigned char*>(bitmap.getPixels()); |
44 | 43 |
45 gfx::PNGCodec::Encode(pixels, gfx::PNGCodec::FORMAT_BGRA, | 44 gfx::PNGCodec::Encode(pixels, gfx::PNGCodec::FORMAT_BGRA, |
46 read_pixels_bounds_in_pixel.size(), | 45 read_pixels_bounds_in_pixel.size(), |
47 bitmap.rowBytes(), true, | 46 bitmap.rowBytes(), true, |
48 std::vector<gfx::PNGCodec::Comment>(), | 47 std::vector<gfx::PNGCodec::Comment>(), |
49 png_representation); | 48 png_representation); |
50 return true; | 49 return true; |
51 } | 50 } |
52 | 51 |
53 } // namespace internal | |
54 } // namespace chrome | 52 } // namespace chrome |
OLD | NEW |