diff options
author | kbr@google.com <kbr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-12 21:10:16 +0000 |
---|---|---|
committer | kbr@google.com <kbr@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-12 21:10:16 +0000 |
commit | de06f680c20575525dd9a1744d0192b03c1bbea4 (patch) | |
tree | c18a0d9369f1422c499fcbd41db5dcb70f27e022 /webkit/gpu | |
parent | b25edd5d882736340e3b4c5de68536535eaa1468 (diff) | |
download | chromium_src-de06f680c20575525dd9a1744d0192b03c1bbea4.zip chromium_src-de06f680c20575525dd9a1744d0192b03c1bbea4.tar.gz chromium_src-de06f680c20575525dd9a1744d0192b03c1bbea4.tar.bz2 |
Change namespace of WebGraphicsContext3DInProcessImpl based on review feedback.
BUG=none
TEST=it compiles
Review URL: http://codereview.chromium.org/6166008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/gpu')
-rw-r--r-- | webkit/gpu/webgraphicscontext3d_in_process_impl.cc | 6 | ||||
-rw-r--r-- | webkit/gpu/webgraphicscontext3d_in_process_impl.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc index 1a91ff1..d263a00 100644 --- a/webkit/gpu/webgraphicscontext3d_in_process_impl.cc +++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.cc @@ -21,7 +21,8 @@ using WebKit::WebGraphicsContext3D; using WebKit::WebString; using WebKit::WebView; -namespace webkit_gpu { +namespace webkit { +namespace gpu { enum { MAX_VERTEX_UNIFORM_VECTORS = 0x8DFB, @@ -1650,5 +1651,6 @@ bool WebGraphicsContext3DInProcessImpl::AngleValidateShaderSource( return true; } -} // namespace webkit_gpu +} // namespace gpu +} // namespace webkit diff --git a/webkit/gpu/webgraphicscontext3d_in_process_impl.h b/webkit/gpu/webgraphicscontext3d_in_process_impl.h index 4081995..479e93b 100644 --- a/webkit/gpu/webgraphicscontext3d_in_process_impl.h +++ b/webkit/gpu/webgraphicscontext3d_in_process_impl.h @@ -21,7 +21,8 @@ namespace gfx { class GLContext; } -namespace webkit_gpu { +namespace webkit { +namespace gpu { // The default implementation of WebGL. In Chromium, using this class // requires the sandbox to be disabled, which is strongly discouraged. @@ -465,7 +466,8 @@ class WebGraphicsContext3DInProcessImpl : public WebKit::WebGraphicsContext3D { ShHandle vertex_compiler_; }; -} // namespace webkit_gpu +} // namespace gpu +} // namespace webkit #endif // WEBKIT_GPU_WEBGRAPHICSCONTEXT3D_IN_PROCESS_IMPL_H_ |