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

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

Issue 14471017: Absolutify paths to page/animation, page/scrolling. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.cpp ('k') | Source/core/rendering/RenderWidget.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) 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 * (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) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. All rights reserv ed.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 8 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 11 matching lines...) Expand all
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 * 24 *
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "core/rendering/RenderObject.h" 28 #include "core/rendering/RenderObject.h"
29 29
30 #include <stdio.h> 30 #include <stdio.h>
31 #include <algorithm> 31 #include <algorithm>
32 #include "AnimationController.h"
33 #include "Chrome.h" 32 #include "Chrome.h"
34 #include "EventHandler.h" 33 #include "EventHandler.h"
35 #include "Frame.h" 34 #include "Frame.h"
36 #include "FrameView.h" 35 #include "FrameView.h"
37 #include "HTMLElement.h" 36 #include "HTMLElement.h"
38 #include "HTMLNames.h" 37 #include "HTMLNames.h"
39 #include "Page.h" 38 #include "Page.h"
40 #include "Settings.h" 39 #include "Settings.h"
41 #include "StyleResolver.h" 40 #include "StyleResolver.h"
42 #include "WebCoreMemoryInstrumentation.h" 41 #include "WebCoreMemoryInstrumentation.h"
43 #include "core/accessibility/AXObjectCache.h" 42 #include "core/accessibility/AXObjectCache.h"
44 #include "core/editing/EditingBoundary.h" 43 #include "core/editing/EditingBoundary.h"
45 #include "core/editing/FrameSelection.h" 44 #include "core/editing/FrameSelection.h"
46 #include "core/editing/htmlediting.h" 45 #include "core/editing/htmlediting.h"
46 #include "core/page/animation/AnimationController.h"
47 #include "core/platform/graphics/DashArray.h" 47 #include "core/platform/graphics/DashArray.h"
48 #include "core/platform/graphics/FloatQuad.h" 48 #include "core/platform/graphics/FloatQuad.h"
49 #include "core/platform/graphics/GraphicsContext.h" 49 #include "core/platform/graphics/GraphicsContext.h"
50 #include "core/platform/graphics/transforms/TransformState.h" 50 #include "core/platform/graphics/transforms/TransformState.h"
51 #include "core/rendering/FlowThreadController.h" 51 #include "core/rendering/FlowThreadController.h"
52 #include "core/rendering/HitTestResult.h" 52 #include "core/rendering/HitTestResult.h"
53 #include "core/rendering/RenderArena.h" 53 #include "core/rendering/RenderArena.h"
54 #include "core/rendering/RenderCounter.h" 54 #include "core/rendering/RenderCounter.h"
55 #include "core/rendering/RenderDeprecatedFlexibleBox.h" 55 #include "core/rendering/RenderDeprecatedFlexibleBox.h"
56 #include "core/rendering/RenderFlexibleBox.h" 56 #include "core/rendering/RenderFlexibleBox.h"
(...skipping 3109 matching lines...) Expand 10 before | Expand all | Expand 10 after
3166 { 3166 {
3167 if (object1) { 3167 if (object1) {
3168 const WebCore::RenderObject* root = object1; 3168 const WebCore::RenderObject* root = object1;
3169 while (root->parent()) 3169 while (root->parent())
3170 root = root->parent(); 3170 root = root->parent();
3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); 3171 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
3172 } 3172 }
3173 } 3173 }
3174 3174
3175 #endif 3175 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerCompositor.cpp ('k') | Source/core/rendering/RenderWidget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698