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

Side by Side Diff: webkit/compositor_bindings/web_nine_patch_layer_impl.cc

Issue 11304020: cc: Nine patch layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add unit tests and address code review Created 8 years, 1 month 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
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698