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

Side by Side Diff: webkit/gpu/webgraphicscontext3d_provider_impl.cc

Issue 16046003: Move webkit/gpu into webkit/common/gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix includes in content/common/gpu/client/gl_helper_* Created 7 years, 7 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 | « webkit/gpu/webgraphicscontext3d_provider_impl.h ('k') | webkit/gpu/webkit_gpu.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "webkit/gpu/webgraphicscontext3d_provider_impl.h"
6
7 #include "cc/output/context_provider.h"
8
9 namespace webkit {
10 namespace gpu {
11
12 WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl(
13 scoped_refptr<cc::ContextProvider> provider)
14 : provider_(provider) {}
15
16 WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {}
17
18 WebKit::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() {
19 return provider_->Context3d();
20 }
21
22 GrContext* WebGraphicsContext3DProviderImpl::grContext() {
23 return provider_->GrContext();
24 }
25
26 } // namespace gpu
27 } // namespace webkit
OLDNEW
« no previous file with comments | « webkit/gpu/webgraphicscontext3d_provider_impl.h ('k') | webkit/gpu/webkit_gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698