| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/mac/scoped_cftyperef.h" | 10 #include "base/mac/scoped_cftyperef.h" |
| 11 #include "base/memory/scoped_nsobject.h" | 11 #include "base/memory/scoped_nsobject.h" |
| 12 #include "ui/gfx/rect.h" | 12 #include "ui/gfx/rect.h" |
| 13 | 13 |
| 14 namespace browser { | 14 namespace browser { |
| 15 | 15 |
| 16 gfx::Rect GrabWindowSnapshot(gfx::NativeWindow window, | 16 gfx::Rect GrabWindowSnapshot(gfx::NativeWindow window, |
| 17 std::vector<unsigned char>* png_representation) { | 17 std::vector<unsigned char>* png_representation, |
| 18 gfx::Rect snapshot_bounds) { |
| 18 png_representation->clear(); | 19 png_representation->clear(); |
| 19 | 20 |
| 21 CGRect windowRect = CGRectNUll; |
| 22 if (!snapshot_bounds.IsEmpty()) { |
| 23 gfx::Rect window_bounds = gfx::Rect([window frame]); |
| 24 snapshot_bounds.Offset(window_bounds.left(), window_bounds.top()); |
| 25 windowRect = snapshot_bounds.ToCGRect(); |
| 26 DCHECK(snapshot_bounds.right() <= window_bounds.right()); |
| 27 DCHECK(snapshot_bounds.bottom() <= window_bounds.bottom()); |
| 28 } |
| 29 |
| 20 // Make sure to grab the "window frame" view so we get current tab + | 30 // Make sure to grab the "window frame" view so we get current tab + |
| 21 // tabstrip. | 31 // tabstrip. |
| 22 NSView* view = [[window contentView] superview]; | 32 NSView* view = [[window contentView] superview]; |
| 23 base::mac::ScopedCFTypeRef<CGImageRef> windowSnapshot(CGWindowListCreateImage( | 33 base::mac::ScopedCFTypeRef<CGImageRef> windowSnapshot(CGWindowListCreateImage( |
| 24 CGRectNull, kCGWindowListOptionIncludingWindow, | 34 CGRectNull, kCGWindowListOptionIncludingWindow, |
| 25 [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming)); | 35 [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming)); |
| 26 if (CGImageGetWidth(windowSnapshot) <= 0) | 36 if (CGImageGetWidth(windowSnapshot) <= 0) |
| 27 return gfx::Rect(); | 37 return gfx::Rect(); |
| 28 | 38 |
| 29 scoped_nsobject<NSBitmapImageRep> rep( | 39 scoped_nsobject<NSBitmapImageRep> rep( |
| 30 [[NSBitmapImageRep alloc] initWithCGImage:windowSnapshot]); | 40 [[NSBitmapImageRep alloc] initWithCGImage:windowSnapshot]); |
| 31 NSData* data = [rep representationUsingType:NSPNGFileType properties:nil]; | 41 NSData* data = [rep representationUsingType:NSPNGFileType properties:nil]; |
| 32 const unsigned char* buf = static_cast<const unsigned char*>([data bytes]); | 42 const unsigned char* buf = static_cast<const unsigned char*>([data bytes]); |
| 33 NSUInteger length = [data length]; | 43 NSUInteger length = [data length]; |
| 34 if (buf == NULL || length == 0) | 44 if (buf == NULL || length == 0) |
| 35 return gfx::Rect(); | 45 return gfx::Rect(); |
| 36 | 46 |
| 37 png_representation->assign(buf, buf + length); | 47 png_representation->assign(buf, buf + length); |
| 38 DCHECK(!png_representation->empty()); | 48 DCHECK(!png_representation->empty()); |
| 39 | 49 |
| 40 return gfx::Rect(static_cast<int>([rep pixelsWide]), | 50 return gfx::Rect(static_cast<int>([rep pixelsWide]), |
| 41 static_cast<int>([rep pixelsHigh])); | 51 static_cast<int>([rep pixelsHigh])); |
| 42 } | 52 } |
| 43 | 53 |
| 44 } // namespace browser | 54 } // namespace browser |
| OLD | NEW |