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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h

Issue 2502413004: WTF/std normalization: replace WTF::Vector::last with ::back (Closed)
Patch Set: rebase Created 4 years, 1 month 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
Index: third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h
diff --git a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h
index eb04afa02fc580e5a7f9915930fe736d94947558..db7605d57280e023ef49e0a396b360534cd0e98f 100644
--- a/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h
+++ b/third_party/WebKit/Source/modules/canvas2d/BaseRenderingContext2D.h
@@ -296,7 +296,7 @@ class MODULES_EXPORT BaseRenderingContext2D : public GarbageCollectedMixin,
CanvasRenderingContext2DState& modifiableState();
const CanvasRenderingContext2DState& state() const {
- return *m_stateStack.last();
+ return *m_stateStack.back();
}
bool computeDirtyRect(const FloatRect& localBounds, SkIRect*);

Powered by Google App Engine
This is Rietveld 408576698