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

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

Issue 2809363002: Rewrite references to "wtf/" to "platform/wtf/" in core/layout. (Closed)
Patch Set: Created 3 years, 8 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved.
5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net)
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 10 matching lines...) Expand all
21 * 21 *
22 */ 22 */
23 23
24 #include "core/layout/LayoutListItem.h" 24 #include "core/layout/LayoutListItem.h"
25 25
26 #include "core/HTMLNames.h" 26 #include "core/HTMLNames.h"
27 #include "core/dom/shadow/FlatTreeTraversal.h" 27 #include "core/dom/shadow/FlatTreeTraversal.h"
28 #include "core/html/HTMLOListElement.h" 28 #include "core/html/HTMLOListElement.h"
29 #include "core/layout/LayoutListMarker.h" 29 #include "core/layout/LayoutListMarker.h"
30 #include "core/paint/ListItemPainter.h" 30 #include "core/paint/ListItemPainter.h"
31 #include "wtf/SaturatedArithmetic.h" 31 #include "platform/wtf/SaturatedArithmetic.h"
32 #include "wtf/StdLibExtras.h" 32 #include "platform/wtf/StdLibExtras.h"
33 #include "wtf/text/StringBuilder.h" 33 #include "platform/wtf/text/StringBuilder.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 using namespace HTMLNames; 37 using namespace HTMLNames;
38 38
39 LayoutListItem::LayoutListItem(Element* element) 39 LayoutListItem::LayoutListItem(Element* element)
40 : LayoutBlockFlow(element), 40 : LayoutBlockFlow(element),
41 marker_(nullptr), 41 marker_(nullptr),
42 has_explicit_value_(false), 42 has_explicit_value_(false),
43 is_value_up_to_date_(false), 43 is_value_up_to_date_(false),
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 // assume that all the following ones have too. 549 // assume that all the following ones have too.
550 // This gives us the opportunity to stop here and avoid 550 // This gives us the opportunity to stop here and avoid
551 // marking the same nodes again. 551 // marking the same nodes again.
552 break; 552 break;
553 } 553 }
554 item->UpdateValue(); 554 item->UpdateValue();
555 } 555 }
556 } 556 }
557 557
558 } // namespace blink 558 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698