Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Side by Side Diff: chrome/gpu/gpu_backing_store_win.cc

Issue 2997002: Coverity: Fix leaking TransportDIB in GpuBackingStore{GLX,Win}::OnPaintToBackingStore (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: add TransportDIB::Map comment Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/gpu/gpu_backing_store_glx.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/gpu/gpu_backing_store_win.h" 5 #include "chrome/gpu/gpu_backing_store_win.h"
6 6
7 #include "app/win_util.h" 7 #include "app/win_util.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "chrome/common/gpu_messages.h" 9 #include "chrome/common/gpu_messages.h"
10 #include "chrome/gpu/gpu_view_win.h" 10 #include "chrome/gpu/gpu_view_win.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 HANDLE source_process_handle = OpenProcess(PROCESS_ALL_ACCESS, 123 HANDLE source_process_handle = OpenProcess(PROCESS_ALL_ACCESS,
124 FALSE, source_process_id); 124 FALSE, source_process_id);
125 CHECK(source_process_handle); 125 CHECK(source_process_handle);
126 126
127 // On Windows we need to duplicate the handle from the remote process. 127 // On Windows we need to duplicate the handle from the remote process.
128 // See BrowserRenderProcessHost::MapTransportDIB for how to do this on other 128 // See BrowserRenderProcessHost::MapTransportDIB for how to do this on other
129 // platforms. 129 // platforms.
130 HANDLE section = win_util::GetSectionFromProcess( 130 HANDLE section = win_util::GetSectionFromProcess(
131 id.handle, source_process_handle, false /* read write */); 131 id.handle, source_process_handle, false /* read write */);
132 CHECK(section); 132 CHECK(section);
133 TransportDIB* dib = TransportDIB::Map(section); 133 scoped_ptr<TransportDIB> dib(TransportDIB::Map(section));
134 CHECK(dib); 134 CHECK(dib.get());
135 135
136 if (!backing_store_dib_) { 136 if (!backing_store_dib_) {
137 backing_store_dib_ = CreateDIB(hdc_, size_.width(), 137 backing_store_dib_ = CreateDIB(hdc_, size_.width(),
138 size_.height(), color_depth_); 138 size_.height(), color_depth_);
139 if (!backing_store_dib_) { 139 if (!backing_store_dib_) {
140 NOTREACHED(); 140 NOTREACHED();
141 141
142 // TODO(brettw): do this in such a way that we can't forget to 142 // TODO(brettw): do this in such a way that we can't forget to
143 // send the ACK. 143 // send the ACK.
144 gpu_thread_->Send(new GpuHostMsg_PaintToBackingStore_ACK(routing_id_)); 144 gpu_thread_->Send(new GpuHostMsg_PaintToBackingStore_ACK(routing_id_));
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 const gfx::Rect& clip_rect, 176 const gfx::Rect& clip_rect,
177 const gfx::Size& view_size) { 177 const gfx::Size& view_size) {
178 RECT damaged_rect, r = clip_rect.ToRECT(); 178 RECT damaged_rect, r = clip_rect.ToRECT();
179 ScrollDC(hdc_, dx, dy, NULL, &r, NULL, &damaged_rect); 179 ScrollDC(hdc_, dx, dy, NULL, &r, NULL, &damaged_rect);
180 180
181 // TODO(darin): this doesn't work if dx and dy are both non-zero! 181 // TODO(darin): this doesn't work if dx and dy are both non-zero!
182 DCHECK(dx == 0 || dy == 0); 182 DCHECK(dx == 0 || dy == 0);
183 183
184 view_->DidScrollBackingStoreRect(dx, dy, clip_rect); 184 view_->DidScrollBackingStoreRect(dx, dy, clip_rect);
185 } 185 }
OLDNEW
« no previous file with comments | « chrome/gpu/gpu_backing_store_glx.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698