| Index: ui/accelerated_widget_mac/software_layer.mm
|
| diff --git a/ui/accelerated_widget_mac/software_layer.mm b/ui/accelerated_widget_mac/software_layer.mm
|
| deleted file mode 100644
|
| index abdef16905920b319234050aa2517d1d08134878..0000000000000000000000000000000000000000
|
| --- a/ui/accelerated_widget_mac/software_layer.mm
|
| +++ /dev/null
|
| @@ -1,67 +0,0 @@
|
| -// Copyright 2014 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.
|
| -
|
| -#include "ui/accelerated_widget_mac/software_layer.h"
|
| -
|
| -#include "base/mac/mac_util.h"
|
| -#include "base/mac/scoped_cftyperef.h"
|
| -#include "base/mac/sdk_forward_declarations.h"
|
| -#include "base/trace_event/trace_event.h"
|
| -#include "ui/base/cocoa/animation_utils.h"
|
| -
|
| -@implementation SoftwareLayer
|
| -
|
| -- (id)init {
|
| - if (self = [super init]) {
|
| - [self setAnchorPoint:CGPointMake(0, 0)];
|
| - // Setting contents gravity is necessary to prevent the layer from being
|
| - // scaled during dyanmic resizes (especially with devtools open).
|
| - [self setContentsGravity:kCAGravityTopLeft];
|
| - }
|
| - return self;
|
| -}
|
| -
|
| -- (void)setContentsToData:(const void *)data
|
| - withRowBytes:(size_t)rowBytes
|
| - withPixelSize:(gfx::Size)pixelSize
|
| - withScaleFactor:(float)scaleFactor {
|
| - TRACE_EVENT0("browser", "-[SoftwareLayer setContentsToData]");
|
| -
|
| - // Disable animating the contents change or the scale factor change.
|
| - ScopedCAActionDisabler disabler;
|
| -
|
| - // Set the contents of the software CALayer to be a CGImage with the provided
|
| - // pixel data. Make a copy of the data before backing the image with them,
|
| - // because the same buffer will be reused for the next frame.
|
| - base::ScopedCFTypeRef<CFDataRef> dataCopy(
|
| - CFDataCreate(NULL,
|
| - static_cast<const UInt8 *>(data),
|
| - rowBytes * pixelSize.height()));
|
| - base::ScopedCFTypeRef<CGDataProviderRef> dataProvider(
|
| - CGDataProviderCreateWithCFData(dataCopy));
|
| - base::ScopedCFTypeRef<CGImageRef> image(
|
| - CGImageCreate(pixelSize.width(),
|
| - pixelSize.height(),
|
| - 8,
|
| - 32,
|
| - rowBytes,
|
| - base::mac::GetSystemColorSpace(),
|
| - kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host,
|
| - dataProvider,
|
| - NULL,
|
| - false,
|
| - kCGRenderingIntentDefault));
|
| - [self setContents:(id)image.get()];
|
| - [self setBounds:CGRectMake(
|
| - 0, 0, pixelSize.width() / scaleFactor, pixelSize.height() / scaleFactor)];
|
| -
|
| - // Set the contents scale of the software CALayer.
|
| - if ([self respondsToSelector:(@selector(contentsScale))] &&
|
| - [self respondsToSelector:(@selector(setContentsScale:))] &&
|
| - [self contentsScale] != scaleFactor) {
|
| - [self setContentsScale:scaleFactor];
|
| - }
|
| -}
|
| -
|
| -@end
|
|
|