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

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

Issue 1251413002: Remove unused class WebNinePatchLayerImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 5 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "cc/blink/web_nine_patch_layer_impl.h"
6
7 #include "base/command_line.h"
8 #include "cc/base/switches.h"
9 #include "cc/blink/web_layer_impl.h"
10 #include "cc/blink/web_layer_impl_fixed_bounds.h"
11 #include "cc/layers/nine_patch_layer.h"
12 #include "cc/layers/picture_image_layer.h"
13
14 namespace cc_blink {
15
16 WebNinePatchLayerImpl::WebNinePatchLayerImpl() {
17 layer_.reset(new WebLayerImpl(
18 cc::NinePatchLayer::Create(WebLayerImpl::LayerSettings())));
19 }
20
21 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() {
22 }
23
24 blink::WebLayer* WebNinePatchLayerImpl::layer() {
25 return layer_.get();
26 }
27
28 void WebNinePatchLayerImpl::setBitmap(const SkBitmap& bitmap) {
29 cc::NinePatchLayer* nine_patch =
30 static_cast<cc::NinePatchLayer*>(layer_->layer());
31 nine_patch->SetBitmap(bitmap);
32 }
33
34 void WebNinePatchLayerImpl::setAperture(const blink::WebRect& aperture) {
35 cc::NinePatchLayer* nine_patch =
36 static_cast<cc::NinePatchLayer*>(layer_->layer());
37 nine_patch->SetAperture(gfx::Rect(aperture));
38 }
39
40 void WebNinePatchLayerImpl::setBorder(const blink::WebRect& border) {
41 cc::NinePatchLayer* nine_patch =
42 static_cast<cc::NinePatchLayer*>(layer_->layer());
43 nine_patch->SetBorder(gfx::Rect(border));
44 }
45
46 } // 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