| Index: third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutGrid.h b/third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| index a04b97cbc7001c52ece7d3b24e96cc8346abdb4f..499798f6a8899b7bee290f70657a37ce5df85b81 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutGrid.h
|
| @@ -74,17 +74,17 @@ class LayoutGrid final : public LayoutBlock {
|
|
|
| typedef Vector<LayoutBox*, 1> GridCell;
|
| const GridCell& gridCell(int row, int column) const {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!m_gridIsDirty);
|
| + SECURITY_DCHECK(!m_gridIsDirty);
|
| return m_grid[row][column];
|
| }
|
|
|
| const Vector<LayoutBox*>& itemsOverflowingGridArea() const {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!m_gridIsDirty);
|
| + SECURITY_DCHECK(!m_gridIsDirty);
|
| return m_gridItemsOverflowingGridArea;
|
| }
|
|
|
| int paintIndexForGridItem(const LayoutBox* layoutBox) const {
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!m_gridIsDirty);
|
| + SECURITY_DCHECK(!m_gridIsDirty);
|
| return m_gridItemsIndexesMap.get(layoutBox);
|
| }
|
|
|
|
|