diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-14 01:53:28 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-14 01:53:28 +0000 |
commit | 9745361fb204edb28563a6c1a950d09a53739704 (patch) | |
tree | 6fa34c9e182c8445a8cde4bfcb95c84a465fbb5c /gpu/pgl | |
parent | e6de7da603bacf8f09b98ad0a2a7a5ad448efdae (diff) | |
download | chromium_src-9745361fb204edb28563a6c1a950d09a53739704.zip chromium_src-9745361fb204edb28563a6c1a950d09a53739704.tar.gz chromium_src-9745361fb204edb28563a6c1a950d09a53739704.tar.bz2 |
Removed base dependency from PGL.
This is so it can be statically linked with untrusted NaCl code.
TEST=try
BUG=none
Review URL: http://codereview.chromium.org/3366021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59321 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/pgl')
-rw-r--r-- | gpu/pgl/command_buffer_pepper.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gpu/pgl/command_buffer_pepper.cc b/gpu/pgl/command_buffer_pepper.cc index dfb204a..0025803 100644 --- a/gpu/pgl/command_buffer_pepper.cc +++ b/gpu/pgl/command_buffer_pepper.cc @@ -4,7 +4,6 @@ #include "gpu/pgl/command_buffer_pepper.h" -#include "base/logging.h" #include "gpu/command_buffer/common/logging.h" using base::SharedMemory; @@ -24,7 +23,7 @@ CommandBufferPepper::~CommandBufferPepper() { // Not implemented in CommandBufferPepper. bool CommandBufferPepper::Initialize(int32 size) { - NOTREACHED(); + GPU_NOTREACHED(); return false; } @@ -128,7 +127,7 @@ CommandBuffer::State CommandBufferPepper::Flush(int32 put_offset) { void CommandBufferPepper::SetGetOffset(int32 get_offset) { // Not implemented by proxy. - NOTREACHED(); + GPU_NOTREACHED(); } int32 CommandBufferPepper::CreateTransferBuffer(size_t size) { @@ -156,13 +155,13 @@ Buffer CommandBufferPepper::GetTransferBuffer(int32 id) { void CommandBufferPepper::SetToken(int32 token) { // Not implemented by proxy. - NOTREACHED(); + GPU_NOTREACHED(); } void CommandBufferPepper::SetParseError( gpu::error::Error error) { // Not implemented by proxy. - NOTREACHED(); + GPU_NOTREACHED(); } gpu::error::Error CommandBufferPepper::GetCachedError() { |