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

Unified Diff: content/common/gpu/image_transport_surface_mac.cc

Issue 10908218: Fix IOSurfaceReuse test under Mac ASAN bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unused math.h Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/gpu/gpu_feature_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/image_transport_surface_mac.cc
diff --git a/content/common/gpu/image_transport_surface_mac.cc b/content/common/gpu/image_transport_surface_mac.cc
index b90a6f5bc0c992ce4b4739cae1cc350afc05b454..729068b4674933733b43fe6242531effa363789b 100644
--- a/content/common/gpu/image_transport_surface_mac.cc
+++ b/content/common/gpu/image_transport_surface_mac.cc
@@ -289,7 +289,7 @@ void IOSurfaceImageTransportSurface::OnResize(gfx::Size size) {
// This trace event is used in gpu_feature_browsertest.cc - the test will need
// to be updated if this event is changed or moved.
TRACE_EVENT2("gpu", "IOSurfaceImageTransportSurface::OnResize",
- "width", size.width(), "height", size.height());
+ "old_width", size_.width(), "new_width", size.width());
// Caching |context_| from OnMakeCurrent. It should still be current.
DCHECK(context_->IsCurrent(this));
« no previous file with comments | « chrome/test/gpu/gpu_feature_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698