OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" | 5 #include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h" |
6 | 6 |
7 #include "cc/output/context_provider.h" | 7 #include "cc/output/context_provider.h" |
8 | 8 |
9 namespace webkit { | 9 namespace webkit { |
10 namespace gpu { | 10 namespace gpu { |
11 | 11 |
12 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( | 12 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( |
13 scoped_refptr<cc::ContextProvider> provider) | 13 scoped_refptr<cc::ContextProvider> provider) |
14 : provider_(provider) {} | 14 : provider_(provider) {} |
15 | 15 |
16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} | 16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} |
17 | 17 |
18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { | 18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { |
19 return provider_->Context3d(); | 19 return provider_->Context3d(); |
20 } | 20 } |
21 | 21 |
22 GrContext* WebGraphicsContext3DProviderImpl::grContext() { | 22 GrContext* WebGraphicsContext3DProviderImpl::grContext() { |
23 return provider_->GrContext(); | 23 return provider_->GrContext(); |
24 } | 24 } |
25 | 25 |
26 } // namespace gpu | 26 } // namespace gpu |
27 } // namespace webkit | 27 } // namespace webkit |
OLD | NEW |