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

Side by Side Diff: content/renderer/webgraphicscontext3d_provider_impl.cc

Issue 126093010: Use ContextProvider subclass to provide WGC3D pointers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 11 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
OLDNEW
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 "content/renderer/webgraphicscontext3d_provider_impl.h"
6 6
7 #include "cc/output/context_provider.h" 7 #include "webkit/common/gpu/context_provider_web_context.h"
8 8
9 namespace webkit { 9 namespace content {
10 namespace gpu {
11 10
12 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl( 11 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl(
13 scoped_refptr<cc::ContextProvider> provider) 12 scoped_refptr<webkit::gpu::ContextProviderWebContext> provider)
14 : provider_(provider) {} 13 : provider_(provider) {}
15 14
16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {} 15 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {}
17 16
18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { 17 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() {
19 return provider_->Context3d(); 18 return provider_->WebContext3D();
20 } 19 }
21 20
22 GrContext* WebGraphicsContext3DProviderImpl::grContext() { 21 GrContext* WebGraphicsContext3DProviderImpl::grContext() {
23 return provider_->GrContext(); 22 return provider_->GrContext();
24 } 23 }
25 24
26 } // namespace gpu 25 } // namespace content
27 } // namespace webkit
OLDNEW
« no previous file with comments | « content/renderer/webgraphicscontext3d_provider_impl.h ('k') | webkit/common/gpu/context_provider_in_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698