| Index: third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp b/third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp
|
| index 085b12cf1e37b588fcf1bd96c7517e47f5e2fb57..aa01136216c92dc586250b70f0400d546e885bac 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/PictureSnapshot.cpp
|
| @@ -179,7 +179,7 @@ std::unique_ptr<PictureSnapshot::Timings> PictureSnapshot::profile(
|
| double stopTime = now + minDuration;
|
| for (unsigned step = 0; step < minRepeatCount || now < stopTime; ++step) {
|
| timings->append(Vector<double>());
|
| - Vector<double>* currentTimings = &timings->last();
|
| + Vector<double>* currentTimings = &timings->back();
|
| if (timings->size() > 1)
|
| currentTimings->reserveCapacity(timings->begin()->size());
|
| ProfilingCanvas canvas(bitmap);
|
|
|