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

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

Issue 14336010: Absolutify paths to accessibility/. (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
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
11 * modify it under the terms of the GNU Library General Public 11 * modify it under the terms of the GNU Library General Public
12 * License as published by the Free Software Foundation; either 12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version. 13 * version 2 of the License, or (at your option) any later version.
14 * 14 *
15 * This library is distributed in the hope that it will be useful, 15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Library General Public License for more details. 18 * Library General Public License for more details.
19 * 19 *
20 * You should have received a copy of the GNU Library General Public License 20 * You should have received a copy of the GNU Library General Public License
21 * along with this library; see the file COPYING.LIB. If not, write to 21 * along with this library; see the file COPYING.LIB. If not, write to
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 "RenderObject.h" 28 #include "RenderObject.h"
29 29
30 #include "AXObjectCache.h" 30 #include <stdio.h>
31 #include <algorithm>
31 #include "AnimationController.h" 32 #include "AnimationController.h"
32 #include "Chrome.h" 33 #include "Chrome.h"
33 #include "ContentData.h" 34 #include "ContentData.h"
34 #include "CursorList.h" 35 #include "CursorList.h"
35 #include "DashArray.h" 36 #include "DashArray.h"
36 #include "EditingBoundary.h" 37 #include "EditingBoundary.h"
37 #include "EventHandler.h" 38 #include "EventHandler.h"
38 #include "FloatQuad.h" 39 #include "FloatQuad.h"
39 #include "FlowThreadController.h" 40 #include "FlowThreadController.h"
40 #include "Frame.h" 41 #include "Frame.h"
(...skipping 26 matching lines...) Expand all
67 #include "RenderTableCaption.h" 68 #include "RenderTableCaption.h"
68 #include "RenderTableCell.h" 69 #include "RenderTableCell.h"
69 #include "RenderTableCol.h" 70 #include "RenderTableCol.h"
70 #include "RenderTableRow.h" 71 #include "RenderTableRow.h"
71 #include "RenderTheme.h" 72 #include "RenderTheme.h"
72 #include "RenderView.h" 73 #include "RenderView.h"
73 #include "Settings.h" 74 #include "Settings.h"
74 #include "StyleResolver.h" 75 #include "StyleResolver.h"
75 #include "TransformState.h" 76 #include "TransformState.h"
76 #include "WebCoreMemoryInstrumentation.h" 77 #include "WebCoreMemoryInstrumentation.h"
78 #include "core/accessibility/AXObjectCache.h"
77 #include "htmlediting.h" 79 #include "htmlediting.h"
78 #include <algorithm>
79 #include <stdio.h>
80 #include <wtf/RefCountedLeakCounter.h> 80 #include <wtf/RefCountedLeakCounter.h>
81 #include <wtf/UnusedParam.h> 81 #include <wtf/UnusedParam.h>
82 82
83 #if ENABLE(SVG) 83 #if ENABLE(SVG)
84 #include "RenderSVGResourceContainer.h" 84 #include "RenderSVGResourceContainer.h"
85 #include "SVGRenderSupport.h" 85 #include "SVGRenderSupport.h"
86 #endif 86 #endif
87 87
88 using namespace std; 88 using namespace std;
89 89
(...skipping 3076 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/RenderMenuList.cpp ('k') | Source/core/rendering/RenderObjectChildList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698