OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2012 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 "config.h" | |
6 #include "web_nine_patch_layer_impl.h" | |
7 | |
8 #include "cc/nine_patch_layer.h" | |
9 #include "ui/gfx/rect.h" | |
10 #include "web_layer_impl.h" | |
11 #include "SkBitmap.h" | |
12 | |
13 using cc::NinePatchLayer; | |
14 | |
15 namespace WebKit { | |
16 | |
17 WebNinePatchLayerImpl::WebNinePatchLayerImpl() | |
18 : m_layer(new WebLayerImpl(NinePatchLayer::create())) | |
19 { | |
20 m_layer->layer()->setIsDrawable(true); | |
danakj
2012/11/02 16:04:14
Heh, we're super inconsistent with this, some laye
| |
21 } | |
22 | |
23 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() | |
24 { | |
25 } | |
26 | |
27 WebLayer* WebNinePatchLayerImpl::layer() | |
28 { | |
29 return m_layer.get(); | |
30 } | |
31 | |
32 void WebNinePatchLayerImpl::setBitmap(const SkBitmap& bitmap, const WebRect& ape rture) { | |
33 static_cast<NinePatchLayer*>(m_layer->layer())->setBitmap(bitmap, gfx::Rect( aperture)); | |
34 } | |
35 | |
36 } // namespace WebKit | |
OLD | NEW |