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

Side by Side Diff: cc/blink/web_nine_patch_layer_impl.cc

Issue 597553002: [chromium] Pass SkBitmap by reference in WebNinePatchLayer::setBitmap and refactor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « cc/blink/web_nine_patch_layer_impl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "cc/blink/web_nine_patch_layer_impl.h" 5 #include "cc/blink/web_nine_patch_layer_impl.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "cc/base/switches.h" 8 #include "cc/base/switches.h"
9 #include "cc/blink/web_layer_impl.h" 9 #include "cc/blink/web_layer_impl.h"
10 #include "cc/blink/web_layer_impl_fixed_bounds.h" 10 #include "cc/blink/web_layer_impl_fixed_bounds.h"
(...skipping 16 matching lines...) Expand all
27 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap, 27 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap,
28 const blink::WebRect& aperture) { 28 const blink::WebRect& aperture) {
29 setBitmap(bitmap); 29 setBitmap(bitmap);
30 setAperture(aperture); 30 setAperture(aperture);
31 setBorder(blink::WebRect(aperture.x, 31 setBorder(blink::WebRect(aperture.x,
32 aperture.y, 32 aperture.y,
33 bitmap.width() - aperture.width, 33 bitmap.width() - aperture.width,
34 bitmap.height() - aperture.height)); 34 bitmap.height() - aperture.height));
35 } 35 }
36 36
37 void WebNinePatchLayerImpl::setBitmap(SkBitmap bitmap) { 37 void WebNinePatchLayerImpl::setBitmap(const SkBitmap& bitmap) {
38 cc::NinePatchLayer* nine_patch = 38 cc::NinePatchLayer* nine_patch =
39 static_cast<cc::NinePatchLayer*>(layer_->layer()); 39 static_cast<cc::NinePatchLayer*>(layer_->layer());
40 nine_patch->SetBitmap(bitmap); 40 nine_patch->SetBitmap(bitmap);
41 } 41 }
42 42
43 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) { 43 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) {
44 cc::NinePatchLayer* nine_patch = 44 cc::NinePatchLayer* nine_patch =
45 static_cast<cc::NinePatchLayer*>(layer_->layer()); 45 static_cast<cc::NinePatchLayer*>(layer_->layer());
46 nine_patch->SetAperture(gfx::Rect(aperture)); 46 nine_patch->SetAperture(gfx::Rect(aperture));
47 } 47 }
48 48
49 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) { 49 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) {
50 cc::NinePatchLayer* nine_patch = 50 cc::NinePatchLayer* nine_patch =
51 static_cast<cc::NinePatchLayer*>(layer_->layer()); 51 static_cast<cc::NinePatchLayer*>(layer_->layer());
52 nine_patch->SetBorder(gfx::Rect(border)); 52 nine_patch->SetBorder(gfx::Rect(border));
53 } 53 }
54 54
55 void WebNinePatchLayerImpl::setFillCenter(bool fill_center) {
56 cc::NinePatchLayer* nine_patch =
57 static_cast<cc::NinePatchLayer*>(layer_->layer());
58 nine_patch->SetFillCenter(fill_center);
59 }
60
61 } // namespace cc_blink 55 } // namespace cc_blink
OLDNEW
« no previous file with comments | « cc/blink/web_nine_patch_layer_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698