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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutTableCell.cpp

Issue 2851453005: Mark some non-spinvalidation methods deprecated, and update paint/README.md (Closed)
Patch Set: - Created 3 years, 7 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc.
8 * All rights reserved. 8 * All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 return true; 1476 return true;
1477 1477
1478 return LayoutBlock::HasLineIfEmpty(); 1478 return LayoutBlock::HasLineIfEmpty();
1479 } 1479 }
1480 1480
1481 PaintInvalidationReason LayoutTableCell::InvalidatePaint( 1481 PaintInvalidationReason LayoutTableCell::InvalidatePaint(
1482 const PaintInvalidatorContext& context) const { 1482 const PaintInvalidatorContext& context) const {
1483 return TableCellPaintInvalidator(*this, context).InvalidatePaint(); 1483 return TableCellPaintInvalidator(*this, context).InvalidatePaint();
1484 } 1484 }
1485 1485
1486 PaintInvalidationReason LayoutTableCell::InvalidatePaint(
1487 const PaintInvalidationState& state) {
1488 return LayoutBlockFlow::InvalidatePaint(state);
1489 }
1490
1491 } // namespace blink 1486 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCell.h ('k') | third_party/WebKit/Source/core/layout/LayoutView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698