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

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

Issue 23201018: DevTools: add "Jump to Relayout Boundary" context menu item in Elements panel (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: renamed output parameters, try run Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('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 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 LayoutRect absoluteOutlineBounds() const 988 LayoutRect absoluteOutlineBounds() const
989 { 989 {
990 return outlineBoundsForRepaint(0); 990 return outlineBoundsForRepaint(0);
991 } 991 }
992 992
993 // Return the renderer whose background style is used to paint the root back ground. Should only be called on the renderer for which isRoot() is true. 993 // Return the renderer whose background style is used to paint the root back ground. Should only be called on the renderer for which isRoot() is true.
994 RenderObject* rendererForRootBackground(); 994 RenderObject* rendererForRootBackground();
995 995
996 RespectImageOrientationEnum shouldRespectImageOrientation() const; 996 RespectImageOrientationEnum shouldRespectImageOrientation() const;
997 997
998 bool isRelayoutBoundaryForInspector() const;
999
998 protected: 1000 protected:
999 inline bool layerCreationAllowedForSubtree() const; 1001 inline bool layerCreationAllowedForSubtree() const;
1000 1002
1001 // Overrides should call the superclass at the end 1003 // Overrides should call the superclass at the end
1002 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle); 1004 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle);
1003 // Overrides should call the superclass at the start 1005 // Overrides should call the superclass at the start
1004 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle); 1006 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
1005 void propagateStyleToAnonymousChildren(bool blockChildrenOnly = false); 1007 void propagateStyleToAnonymousChildren(bool blockChildrenOnly = false);
1006 1008
1007 void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, Bo xSide, 1009 void drawLineForBoxSide(GraphicsContext*, int x1, int y1, int x2, int y2, Bo xSide,
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 void showTree(const WebCore::RenderObject*); 1387 void showTree(const WebCore::RenderObject*);
1386 void showLineTree(const WebCore::RenderObject*); 1388 void showLineTree(const WebCore::RenderObject*);
1387 void showRenderTree(const WebCore::RenderObject* object1); 1389 void showRenderTree(const WebCore::RenderObject* object1);
1388 // We don't make object2 an optional parameter so that showRenderTree 1390 // We don't make object2 an optional parameter so that showRenderTree
1389 // can be called from gdb easily. 1391 // can be called from gdb easily.
1390 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2); 1392 void showRenderTree(const WebCore::RenderObject* object1, const WebCore::RenderO bject* object2);
1391 1393
1392 #endif 1394 #endif
1393 1395
1394 #endif // RenderObject_h 1396 #endif // RenderObject_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDOMAgent.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698