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

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

Issue 358603002: Remove StyleEngine.h include from RenderObject.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-style-bool-to-0
Patch Set: Rebased for landing Created 6 years, 5 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/RenderInline.cpp ('k') | Source/core/rendering/RenderObject.h » ('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) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/rendering/RenderListBox.h" 31 #include "core/rendering/RenderListBox.h"
32 32
33 #include "core/HTMLNames.h" 33 #include "core/HTMLNames.h"
34 #include "core/accessibility/AXObjectCache.h" 34 #include "core/accessibility/AXObjectCache.h"
35 #include "core/css/CSSFontSelector.h" 35 #include "core/css/CSSFontSelector.h"
36 #include "core/css/resolver/StyleResolver.h" 36 #include "core/css/resolver/StyleResolver.h"
37 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
38 #include "core/dom/NodeRenderStyle.h" 38 #include "core/dom/NodeRenderStyle.h"
39 #include "core/dom/StyleEngine.h"
39 #include "core/editing/FrameSelection.h" 40 #include "core/editing/FrameSelection.h"
40 #include "core/frame/FrameView.h" 41 #include "core/frame/FrameView.h"
41 #include "core/frame/LocalFrame.h" 42 #include "core/frame/LocalFrame.h"
42 #include "core/html/HTMLOptGroupElement.h" 43 #include "core/html/HTMLOptGroupElement.h"
43 #include "core/html/HTMLOptionElement.h" 44 #include "core/html/HTMLOptionElement.h"
44 #include "core/html/HTMLSelectElement.h" 45 #include "core/html/HTMLSelectElement.h"
45 #include "core/page/EventHandler.h" 46 #include "core/page/EventHandler.h"
46 #include "core/page/FocusController.h" 47 #include "core/page/FocusController.h"
47 #include "core/page/Page.h" 48 #include "core/page/Page.h"
48 #include "core/page/SpatialNavigation.h" 49 #include "core/page/SpatialNavigation.h"
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 { 1018 {
1018 return itemBoundingBoxRectInternal(point, listIndexToRenderListBoxIndex(inde x)); 1019 return itemBoundingBoxRectInternal(point, listIndexToRenderListBoxIndex(inde x));
1019 } 1020 }
1020 1021
1021 bool RenderListBox::scrollToRevealElementAtListIndex(int index) 1022 bool RenderListBox::scrollToRevealElementAtListIndex(int index)
1022 { 1023 {
1023 return scrollToRevealElementAtListIndexInternal(listIndexToRenderListBoxInde x(index)); 1024 return scrollToRevealElementAtListIndexInternal(listIndexToRenderListBoxInde x(index));
1024 } 1025 }
1025 1026
1026 } // namespace WebCore 1027 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderInline.cpp ('k') | Source/core/rendering/RenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698