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

Unified Diff: webkit/common/gpu/webgraphicscontext3d_impl.cc

Issue 317523002: Corrected namespace for WebGraphicsContext3DImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: webkit/common/gpu/webgraphicscontext3d_impl.cc
diff --git a/webkit/common/gpu/webgraphicscontext3d_impl.cc b/webkit/common/gpu/webgraphicscontext3d_impl.cc
index a1da8230e105fdc0b9dfe44194033019828574d1..e93bcebbb813cc5091538368148b93e22a2d5885 100644
--- a/webkit/common/gpu/webgraphicscontext3d_impl.cc
+++ b/webkit/common/gpu/webgraphicscontext3d_impl.cc
@@ -18,7 +18,8 @@
#endif
#include "third_party/khronos/GLES2/gl2ext.h"
-namespace content {
+namespace webkit {
+namespace gpu {
namespace {
@@ -33,7 +34,7 @@ uint32_t GenFlushID() {
} // namespace anonymous
class WebGraphicsContext3DErrorMessageCallback
- : public gpu::gles2::GLES2ImplementationErrorMessageCallback {
+ : public ::gpu::gles2::GLES2ImplementationErrorMessageCallback {
public:
WebGraphicsContext3DErrorMessageCallback(
WebGraphicsContext3DImpl* context)
@@ -943,7 +944,7 @@ GrGLInterface* WebGraphicsContext3DImpl::createGrGLInterface() {
return skia_bindings::CreateCommandBufferSkiaGLBinding();
}
-gpu::gles2::GLES2ImplementationErrorMessageCallback*
+::gpu::gles2::GLES2ImplementationErrorMessageCallback*
WebGraphicsContext3DImpl::getErrorMessageCallback() {
if (!client_error_message_callback_) {
client_error_message_callback_.reset(
@@ -983,4 +984,5 @@ void WebGraphicsContext3DImpl::copyTextureToParentTextureCHROMIUM(
void WebGraphicsContext3DImpl::releaseShaderCompiler() {
}
-} // namespace content
+} // namespace gpu
+} // namespace webkit
« no previous file with comments | « webkit/common/gpu/webgraphicscontext3d_impl.h ('k') | webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698