summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
authorgman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-08 21:49:17 +0000
committergman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-08 21:49:17 +0000
commit552079df978b40210f549546739b6393fdc3b8b0 (patch)
treecc343c87d9f66e59b2121ff1cb488e81a4957292 /gpu
parent7ff7b8145878e28d9b85e9481b41f6d0651f7860 (diff)
downloadchromium_src-552079df978b40210f549546739b6393fdc3b8b0.zip
chromium_src-552079df978b40210f549546739b6393fdc3b8b0.tar.gz
chromium_src-552079df978b40210f549546739b6393fdc3b8b0.tar.bz2
Fix small issue in gpu_plugin_object
TEST=none BUG=none Review URL: http://codereview.chromium.org/460145 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34090 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r--gpu/gpu_plugin/gpu_plugin_object.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/gpu_plugin/gpu_plugin_object.cc b/gpu/gpu_plugin/gpu_plugin_object.cc
index d4ea9150..c8dadc2 100644
--- a/gpu/gpu_plugin/gpu_plugin_object.cc
+++ b/gpu/gpu_plugin/gpu_plugin_object.cc
@@ -26,7 +26,7 @@ GPUPluginObject::GPUPluginObject(NPP npp)
: npp_(npp),
status_(kWaitingForNew),
command_buffer_(new CommandBufferService),
- processor_(new GPUProcessor(npp, command_buffer_.get())) {
+ processor_(new GPUProcessor(command_buffer_.get())) {
memset(&window_, 0, sizeof(window_));
}