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

Side by Side Diff: third_party/WebKit/Source/core/layout/line/LineBoxList.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month 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) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 21 matching lines...) Expand all
32 #include "core/layout/api/HitTestAction.h" 32 #include "core/layout/api/HitTestAction.h"
33 #include "wtf/Allocator.h" 33 #include "wtf/Allocator.h"
34 #include "wtf/Assertions.h" 34 #include "wtf/Assertions.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class CullRect; 38 class CullRect;
39 class HitTestLocation; 39 class HitTestLocation;
40 class HitTestResult; 40 class HitTestResult;
41 class InlineFlowBox; 41 class InlineFlowBox;
42 class LayoutBoxModelObject;
43 class LayoutPoint; 42 class LayoutPoint;
44 class LayoutRect;
45 class LayoutUnit; 43 class LayoutUnit;
46 class LineLayoutBoxModel; 44 class LineLayoutBoxModel;
47 class LineLayoutItem; 45 class LineLayoutItem;
48 struct PaintInfo; 46 struct PaintInfo;
49 47
50 class LineBoxList { 48 class LineBoxList {
51 DISALLOW_NEW(); 49 DISALLOW_NEW();
52 50
53 public: 51 public:
54 LineBoxList() : m_firstLineBox(nullptr), m_lastLineBox(nullptr) {} 52 LineBoxList() : m_firstLineBox(nullptr), m_lastLineBox(nullptr) {}
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 InlineFlowBox* m_lastLineBox; 101 InlineFlowBox* m_lastLineBox;
104 }; 102 };
105 103
106 #if !ENABLE(ASSERT) 104 #if !ENABLE(ASSERT)
107 inline void LineBoxList::checkConsistency() const {} 105 inline void LineBoxList::checkConsistency() const {}
108 #endif 106 #endif
109 107
110 } // namespace blink 108 } // namespace blink
111 109
112 #endif // LineBoxList_h 110 #endif // LineBoxList_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698