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

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

Issue 713933002: Create Source/modules/accessibility/ and move most of core/accessibility/* into it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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 12 matching lines...) Expand all
23 * 23 *
24 */ 24 */
25 25
26 #ifndef RenderObject_h 26 #ifndef RenderObject_h
27 #define RenderObject_h 27 #define RenderObject_h
28 28
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 #include "core/dom/DocumentLifecycle.h" 30 #include "core/dom/DocumentLifecycle.h"
31 #include "core/dom/Element.h" 31 #include "core/dom/Element.h"
32 #include "core/editing/TextAffinity.h" 32 #include "core/editing/TextAffinity.h"
33 #include "core/editing/VisiblePosition.h"
mstensho (USE GERRIT) 2014/11/11 08:23:49 Why is this necessary now? You didn't add any new
33 #include "core/fetch/ImageResourceClient.h" 34 #include "core/fetch/ImageResourceClient.h"
34 #include "core/html/HTMLElement.h" 35 #include "core/html/HTMLElement.h"
35 #include "core/inspector/InspectorTraceEvents.h" 36 #include "core/inspector/InspectorTraceEvents.h"
36 #include "core/rendering/HitTestRequest.h" 37 #include "core/rendering/HitTestRequest.h"
37 #include "core/rendering/PaintInvalidationState.h" 38 #include "core/rendering/PaintInvalidationState.h"
38 #include "core/rendering/PaintPhase.h" 39 #include "core/rendering/PaintPhase.h"
39 #include "core/rendering/RenderObjectChildList.h" 40 #include "core/rendering/RenderObjectChildList.h"
40 #include "core/rendering/ScrollAlignment.h" 41 #include "core/rendering/ScrollAlignment.h"
41 #include "core/rendering/SubtreeLayoutScope.h" 42 #include "core/rendering/SubtreeLayoutScope.h"
42 #include "core/rendering/compositing/CompositingState.h" 43 #include "core/rendering/compositing/CompositingState.h"
(...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 void showTree(const blink::RenderObject*); 1616 void showTree(const blink::RenderObject*);
1616 void showLineTree(const blink::RenderObject*); 1617 void showLineTree(const blink::RenderObject*);
1617 void showRenderTree(const blink::RenderObject* object1); 1618 void showRenderTree(const blink::RenderObject* object1);
1618 // We don't make object2 an optional parameter so that showRenderTree 1619 // We don't make object2 an optional parameter so that showRenderTree
1619 // can be called from gdb easily. 1620 // can be called from gdb easily.
1620 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2); 1621 void showRenderTree(const blink::RenderObject* object1, const blink::RenderObjec t* object2);
1621 1622
1622 #endif 1623 #endif
1623 1624
1624 #endif // RenderObject_h 1625 #endif // RenderObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698