| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/renderer/webgraphicscontext3d_provider_impl.h" | |
| 6 | |
| 7 #include "webkit/common/gpu/context_provider_web_context.h" | |
| 8 | |
| 9 namespace content { | |
| 10 | |
| 11 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( | |
| 12 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider) | |
| 13 : provider_(provider) {} | |
| 14 | |
| 15 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} | |
| 16 | |
| 17 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { | |
| 18 return provider_->WebContext3D(); | |
| 19 } | |
| 20 | |
| 21 GrContext* WebGraphicsContext3DProviderImpl::grContext() { | |
| 22 return provider_->GrContext(); | |
| 23 } | |
| 24 | |
| 25 } // namespace content | |
| OLD | NEW |