diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 09:12:48 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 09:12:48 +0000 |
commit | aa3174b125392c20bbac2db1b324a050340d9578 (patch) | |
tree | c7c6f52c6bc964e06d10b5e307d6ac1fcc21e0fe /content/common/gpu | |
parent | 72c42175d24e77f89781f2a6b3eb0ab04e13e296 (diff) | |
download | chromium_src-aa3174b125392c20bbac2db1b324a050340d9578.zip chromium_src-aa3174b125392c20bbac2db1b324a050340d9578.tar.gz chromium_src-aa3174b125392c20bbac2db1b324a050340d9578.tar.bz2 |
Chromium style checker cleanup
Automated clean up of style checker errors that were missed due to the plugin
not being executed on implementation files.
BUG=115047
TBR=ben, brettw, jamesr, joi, satorux, piman, wez
Review URL: https://chromiumcodereview.appspot.com/12813004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188311 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/gpu')
-rw-r--r-- | content/common/gpu/client/context_provider_command_buffer.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/gpu/client/context_provider_command_buffer.cc b/content/common/gpu/client/context_provider_command_buffer.cc index 2796007..a291c31 100644 --- a/content/common/gpu/client/context_provider_command_buffer.cc +++ b/content/common/gpu/client/context_provider_command_buffer.cc @@ -33,7 +33,8 @@ class ContextProviderCommandBuffer::MemoryAllocationCallbackProxy provider_->context3d_->setMemoryAllocationChangedCallbackCHROMIUM(this); } - void onMemoryAllocationChanged(WebKit::WebGraphicsMemoryAllocation alloc) { + virtual void onMemoryAllocationChanged( + WebKit::WebGraphicsMemoryAllocation alloc) { provider_->OnMemoryAllocationChanged(!!alloc.gpuResourceSizeInBytes); } |