Index: content/shell/renderer/test_runner/web_test_proxy.cc |
diff --git a/content/shell/renderer/test_runner/web_test_proxy.cc b/content/shell/renderer/test_runner/web_test_proxy.cc |
index 433d2585c0280a3636268b9b82651b80fbcdb032..bd31b74b1b469eea9912905f4fd2f9c28b6647a9 100644 |
--- a/content/shell/renderer/test_runner/web_test_proxy.cc |
+++ b/content/shell/renderer/test_runner/web_test_proxy.cc |
@@ -577,9 +577,9 @@ void CaptureCallback::didCompositeAndReadback(const SkBitmap& bitmap) { |
TRACE_EVENT2("shell", |
"CaptureCallback::didCompositeAndReadback", |
"x", |
- bitmap.info().fWidth, |
+ bitmap.info().width(), |
"y", |
- bitmap.info().fHeight); |
+ bitmap.info().height()); |
if (!wait_for_popup_) { |
callback_.Run(bitmap); |
delete this; |