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

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

Issue 1541793002: Remove config.h inclusion from third_party/WebKit/Source/core/layout/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2002 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2002 Lars Knoll (knoll@kde.org)
3 * (C) 2002 Dirk Mueller (mueller@kde.org) 3 * (C) 2002 Dirk Mueller (mueller@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License. 9 * version 2 of the License.
10 * 10 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #include "config.h"
23 #include "core/layout/TableLayoutAlgorithmFixed.h" 22 #include "core/layout/TableLayoutAlgorithmFixed.h"
24 23
25 #include "core/layout/LayoutTable.h" 24 #include "core/layout/LayoutTable.h"
26 #include "core/layout/LayoutTableCell.h" 25 #include "core/layout/LayoutTableCell.h"
27 #include "core/layout/LayoutTableCol.h" 26 #include "core/layout/LayoutTableCol.h"
28 #include "core/layout/LayoutTableSection.h" 27 #include "core/layout/LayoutTableSection.h"
29 #include "platform/LayoutUnit.h" 28 #include "platform/LayoutUnit.h"
30 29
31 /* 30 /*
32 The text below is from the CSS 2.1 specs. 31 The text below is from the CSS 2.1 specs.
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 LayoutTableRow* row = section->rowLayoutObjectAt(i); 330 LayoutTableRow* row = section->rowLayoutObjectAt(i);
332 if (!row) 331 if (!row)
333 continue; 332 continue;
334 for (LayoutTableCell* cell = row->firstCell(); cell; cell = cell->ne xtCell()) 333 for (LayoutTableCell* cell = row->firstCell(); cell; cell = cell->ne xtCell())
335 cell->setPreferredLogicalWidthsDirty(); 334 cell->setPreferredLogicalWidthsDirty();
336 } 335 }
337 } 336 }
338 } 337 }
339 338
340 } // namespace blink 339 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698