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

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

Issue 470983004: Move blink<->cc bindings to cc/blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « cc/blink/web_nine_patch_layer_impl.h ('k') | cc/blink/web_scroll_offset_animation_curve_impl.h » ('j') | 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 "content/renderer/compositor_bindings/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"
10 #include "cc/blink/web_layer_impl_fixed_bounds.h"
9 #include "cc/layers/nine_patch_layer.h" 11 #include "cc/layers/nine_patch_layer.h"
10 #include "cc/layers/picture_image_layer.h" 12 #include "cc/layers/picture_image_layer.h"
11 #include "content/renderer/compositor_bindings/web_layer_impl.h"
12 #include "content/renderer/compositor_bindings/web_layer_impl_fixed_bounds.h"
13 13
14 namespace content { 14 namespace cc_blink {
15 15
16 WebNinePatchLayerImpl::WebNinePatchLayerImpl() { 16 WebNinePatchLayerImpl::WebNinePatchLayerImpl() {
17 layer_.reset(new WebLayerImpl(cc::NinePatchLayer::Create())); 17 layer_.reset(new WebLayerImpl(cc::NinePatchLayer::Create()));
18 } 18 }
19 19
20 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() { 20 WebNinePatchLayerImpl::~WebNinePatchLayerImpl() {
21 } 21 }
22 22
23 blink::WebLayer* WebNinePatchLayerImpl::layer() { 23 blink::WebLayer* WebNinePatchLayerImpl::layer() {
24 return layer_.get(); 24 return layer_.get();
(...skipping 26 matching lines...) Expand all
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) { 55 void WebNinePatchLayerImpl::setFillCenter(bool fill_center) {
56 cc::NinePatchLayer* nine_patch = 56 cc::NinePatchLayer* nine_patch =
57 static_cast<cc::NinePatchLayer*>(layer_->layer()); 57 static_cast<cc::NinePatchLayer*>(layer_->layer());
58 nine_patch->SetFillCenter(fill_center); 58 nine_patch->SetFillCenter(fill_center);
59 } 59 }
60 60
61 } // namespace content 61 } // namespace cc_blink
62
OLDNEW
« no previous file with comments | « cc/blink/web_nine_patch_layer_impl.h ('k') | cc/blink/web_scroll_offset_animation_curve_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698