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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2607493004: Fix minor typos in comment and param name. (Closed)
Patch Set: Created 4 years 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 | « cc/trees/layer_tree_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/PaintLayer.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
index 7a098e407c3170d03fdbc948ebb001ca222ec3f6..cb0c1fc25729b42500919d40ceabe57250f7cea3 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
@@ -2420,14 +2420,13 @@ LayoutRect PaintLayer::logicalBoundingBox() const {
return rect;
}
-static inline LayoutRect flippedLogicalBoundingBox(
- LayoutRect boundingBox,
- LayoutObject* layoutObjects) {
+static inline LayoutRect flippedLogicalBoundingBox(LayoutRect boundingBox,
+ LayoutObject* layoutObject) {
LayoutRect result = boundingBox;
- if (layoutObjects->isBox())
- toLayoutBox(layoutObjects)->flipForWritingMode(result);
+ if (layoutObject->isBox())
+ toLayoutBox(layoutObject)->flipForWritingMode(result);
else
- layoutObjects->containingBlock()->flipForWritingMode(result);
+ layoutObject->containingBlock()->flipForWritingMode(result);
return result;
}
« no previous file with comments | « cc/trees/layer_tree_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698