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

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

Issue 21430003: Implement interfaces in PaintInfo and make it a class. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@getterPaintInfo01
Patch Set: Second try Created 7 years, 4 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) 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 class RenderGeometryMap; 63 class RenderGeometryMap;
64 class RenderLayer; 64 class RenderLayer;
65 class RenderLayerModelObject; 65 class RenderLayerModelObject;
66 class RenderNamedFlowThread; 66 class RenderNamedFlowThread;
67 class RenderSVGResourceContainer; 67 class RenderSVGResourceContainer;
68 class RenderTable; 68 class RenderTable;
69 class RenderTheme; 69 class RenderTheme;
70 class TransformState; 70 class TransformState;
71 class VisiblePosition; 71 class VisiblePosition;
72 72
73 struct PaintInfo; 73 class PaintInfo;
74 74
75 enum CursorDirective { 75 enum CursorDirective {
76 SetCursorBasedOnStyle, 76 SetCursorBasedOnStyle,
77 SetCursor, 77 SetCursor,
78 DoNotSetCursor 78 DoNotSetCursor
79 }; 79 };
80 80
81 enum HitTestFilter { 81 enum HitTestFilter {
82 HitTestAll, 82 HitTestAll,
83 HitTestSelf, 83 HitTestSelf,
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
1399 // Outside the WebCore namespace for ease of invocation from gdb. 1399 // Outside the WebCore namespace for ease of invocation from gdb.
1400 void showTree(const WebCore::RenderObject*); 1400 void showTree(const WebCore::RenderObject*);
1401 void showLineTree(const WebCore::RenderObject*); 1401 void showLineTree(const WebCore::RenderObject*);
1402 void showRenderTree(const WebCore::RenderObject* object1); 1402 void showRenderTree(const WebCore::RenderObject* object1);
1403 // We don't make object2 an optional parameter so that showRenderTree 1403 // We don't make object2 an optional parameter so that showRenderTree
1404 // can be called from gdb easily. 1404 // can be called from gdb easily.
1405 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1405 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1406 #endif 1406 #endif
1407 1407
1408 #endif // RenderObject_h 1408 #endif // RenderObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698