summaryrefslogtreecommitdiffstats
path: root/chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc')
-rw-r--r--chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc b/chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
deleted file mode 100644
index 56291316780..00000000000
--- a/chromium/webkit/common/gpu/webgraphicscontext3d_provider_impl.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "webkit/common/gpu/webgraphicscontext3d_provider_impl.h"
-
-#include "cc/output/context_provider.h"
-
-namespace webkit {
-namespace gpu {
-
-WebGraphicsContext3DProviderImpl::WebGraphicsContext3DProviderImpl(
- scoped_refptr<cc::ContextProvider> provider)
- : provider_(provider) {}
-
-WebGraphicsContext3DProviderImpl::~WebGraphicsContext3DProviderImpl() {}
-
-blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() {
- return provider_->Context3d();
-}
-
-GrContext* WebGraphicsContext3DProviderImpl::grContext() {
- return provider_->GrContext();
-}
-
-} // namespace gpu
-} // namespace webkit