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

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

Issue 336163003: Remove excessive include of ActiveAnimations.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: One more use of RuntimeEnabledFeatures detected by the bots; add it Created 6 years, 6 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
« no previous file with comments | « Source/core/rendering/RenderLayerBlendInfo.cpp ('k') | no next file » | 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 "core/HTMLNames.h" 30 #include "core/HTMLNames.h"
31 #include "core/accessibility/AXObjectCache.h" 31 #include "core/accessibility/AXObjectCache.h"
32 #include "core/animation/ActiveAnimations.h"
33 #include "core/css/resolver/StyleResolver.h" 32 #include "core/css/resolver/StyleResolver.h"
34 #include "core/dom/ElementTraversal.h" 33 #include "core/dom/ElementTraversal.h"
35 #include "core/dom/shadow/ShadowRoot.h" 34 #include "core/dom/shadow/ShadowRoot.h"
36 #include "core/editing/EditingBoundary.h" 35 #include "core/editing/EditingBoundary.h"
37 #include "core/editing/FrameSelection.h" 36 #include "core/editing/FrameSelection.h"
38 #include "core/editing/htmlediting.h" 37 #include "core/editing/htmlediting.h"
39 #include "core/fetch/ResourceLoadPriorityOptimizer.h" 38 #include "core/fetch/ResourceLoadPriorityOptimizer.h"
40 #include "core/fetch/ResourceLoader.h" 39 #include "core/fetch/ResourceLoader.h"
41 #include "core/frame/FrameView.h" 40 #include "core/frame/FrameView.h"
42 #include "core/frame/LocalFrame.h" 41 #include "core/frame/LocalFrame.h"
(...skipping 3491 matching lines...) Expand 10 before | Expand all | Expand 10 after
3534 { 3533 {
3535 if (object1) { 3534 if (object1) {
3536 const WebCore::RenderObject* root = object1; 3535 const WebCore::RenderObject* root = object1;
3537 while (root->parent()) 3536 while (root->parent())
3538 root = root->parent(); 3537 root = root->parent();
3539 root->showRenderTreeAndMark(object1, "*", object2, "-", 0); 3538 root->showRenderTreeAndMark(object1, "*", object2, "-", 0);
3540 } 3539 }
3541 } 3540 }
3542 3541
3543 #endif 3542 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerBlendInfo.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698