OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 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 | 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 "config.h" | 5 #include "config.h" |
6 #include "DelegatedRendererLayerChromium.h" | 6 #include "DelegatedRendererLayerChromium.h" |
7 | 7 |
8 #include "CCDelegatedRendererLayerImpl.h" | 8 #include "CCDelegatedRendererLayerImpl.h" |
9 | 9 |
10 namespace cc { | 10 namespace cc { |
(...skipping 13 matching lines...) Expand all Loading... |
24 DelegatedRendererLayerChromium::~DelegatedRendererLayerChromium() | 24 DelegatedRendererLayerChromium::~DelegatedRendererLayerChromium() |
25 { | 25 { |
26 } | 26 } |
27 | 27 |
28 scoped_ptr<CCLayerImpl> DelegatedRendererLayerChromium::createCCLayerImpl() | 28 scoped_ptr<CCLayerImpl> DelegatedRendererLayerChromium::createCCLayerImpl() |
29 { | 29 { |
30 return CCDelegatedRendererLayerImpl::create(m_layerId).PassAs<CCLayerImpl>()
; | 30 return CCDelegatedRendererLayerImpl::create(m_layerId).PassAs<CCLayerImpl>()
; |
31 } | 31 } |
32 | 32 |
33 } | 33 } |
OLD | NEW |