summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/common/bitfield_helpers.h
diff options
context:
space:
mode:
authorapatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-12 00:11:25 +0000
committerapatrick@google.com <apatrick@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-12 00:11:25 +0000
commita7a27ace0760f1ed19016822a45c6ec5300e861c (patch)
treeb7641f10c9fb3130c0ae8f50e7223db2ae722cda /gpu/command_buffer/common/bitfield_helpers.h
parent82017272e7272182443d7054911c4f890346353e (diff)
downloadchromium_src-a7a27ace0760f1ed19016822a45c6ec5300e861c.zip
chromium_src-a7a27ace0760f1ed19016822a45c6ec5300e861c.tar.gz
chromium_src-a7a27ace0760f1ed19016822a45c6ec5300e861c.tar.bz2
Added CommandBufferProxy, CommandBufferStub. Replaced NPAPI with IPC for synchronous messages. WebPluginDelegateImpl can instantiate a command buffer. Removed remaining dependencies on NPAPI.
TEST=none BUG=none Review URL: http://codereview.chromium.org/465040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34397 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/common/bitfield_helpers.h')
-rw-r--r--gpu/command_buffer/common/bitfield_helpers.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gpu/command_buffer/common/bitfield_helpers.h b/gpu/command_buffer/common/bitfield_helpers.h
index b74374d..7143c69 100644
--- a/gpu/command_buffer/common/bitfield_helpers.h
+++ b/gpu/command_buffer/common/bitfield_helpers.h
@@ -33,10 +33,10 @@
// This file contains a helper template class used to access bit fields in
// unsigned int_ts.
-#ifndef GPU_COMMAND_BUFFER_COMMON_CROSS_BITFIELD_HELPERS_H_
-#define GPU_COMMAND_BUFFER_COMMON_CROSS_BITFIELD_HELPERS_H_
+#ifndef GPU_COMMAND_BUFFER_COMMON_BITFIELD_HELPERS_H_
+#define GPU_COMMAND_BUFFER_COMMON_BITFIELD_HELPERS_H_
-namespace command_buffer {
+namespace gpu {
// Bitfield template class, used to access bit fields in unsigned int_ts.
template<int shift, int length> class BitField {
@@ -63,6 +63,6 @@ template<int shift, int length> class BitField {
}
};
-} // namespace command_buffer
+} // namespace gpu
-#endif // GPU_COMMAND_BUFFER_COMMON_CROSS_BITFIELD_HELPERS_H_
+#endif // GPU_COMMAND_BUFFER_COMMON_BITFIELD_HELPERS_H_