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

Side by Side Diff: Source/core/rendering/RenderObject.h

Issue 337113005: Reduce forward declarations in core/rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/rendering/RenderMediaControls.h ('k') | Source/core/rendering/RenderRegion.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 namespace WebCore { 47 namespace WebCore {
48 48
49 class AffineTransform; 49 class AffineTransform;
50 class Cursor; 50 class Cursor;
51 class Document; 51 class Document;
52 class HitTestLocation; 52 class HitTestLocation;
53 class HitTestResult; 53 class HitTestResult;
54 class InlineBox; 54 class InlineBox;
55 class InlineFlowBox; 55 class InlineFlowBox;
56 class Path;
57 class Position; 56 class Position;
58 class PseudoStyleRequest; 57 class PseudoStyleRequest;
59 class RenderBoxModelObject; 58 class RenderBoxModelObject;
60 class RenderInline;
61 class RenderBlock; 59 class RenderBlock;
62 class RenderFlowThread; 60 class RenderFlowThread;
63 class RenderGeometryMap; 61 class RenderGeometryMap;
64 class RenderLayer; 62 class RenderLayer;
65 class RenderLayerModelObject; 63 class RenderLayerModelObject;
66 class RenderSVGResourceContainer;
67 class RenderTable;
68 class RenderTheme;
69 class RenderView; 64 class RenderView;
70 class ResourceLoadPriorityOptimizer;
71 class TransformState; 65 class TransformState;
72 66
73 struct PaintInfo; 67 struct PaintInfo;
74 68
75 enum CursorDirective { 69 enum CursorDirective {
76 SetCursorBasedOnStyle, 70 SetCursorBasedOnStyle,
77 SetCursor, 71 SetCursor,
78 DoNotSetCursor 72 DoNotSetCursor
79 }; 73 };
80 74
(...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1481 void showTree(const WebCore::RenderObject*); 1475 void showTree(const WebCore::RenderObject*);
1482 void showLineTree(const WebCore::RenderObject*); 1476 void showLineTree(const WebCore::RenderObject*);
1483 void showRenderTree(const WebCore::RenderObject* object1); 1477 void showRenderTree(const WebCore::RenderObject* object1);
1484 // We don't make object2 an optional parameter so that showRenderTree 1478 // We don't make object2 an optional parameter so that showRenderTree
1485 // can be called from gdb easily. 1479 // can be called from gdb easily.
1486 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1480 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1487 1481
1488 #endif 1482 #endif
1489 1483
1490 #endif // RenderObject_h 1484 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderMediaControls.h ('k') | Source/core/rendering/RenderRegion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698