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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.cpp

Issue 2012723003: Remove unnecessary inclusions of LayoutObject-derived headers in modules/accessibility/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "core/html/HTMLSelectElement.h" 53 #include "core/html/HTMLSelectElement.h"
54 #include "core/html/HTMLTextAreaElement.h" 54 #include "core/html/HTMLTextAreaElement.h"
55 #include "core/html/shadow/ShadowElementNames.h" 55 #include "core/html/shadow/ShadowElementNames.h"
56 #include "core/layout/HitTestResult.h" 56 #include "core/layout/HitTestResult.h"
57 #include "core/layout/LayoutFileUploadControl.h" 57 #include "core/layout/LayoutFileUploadControl.h"
58 #include "core/layout/LayoutHTMLCanvas.h" 58 #include "core/layout/LayoutHTMLCanvas.h"
59 #include "core/layout/LayoutImage.h" 59 #include "core/layout/LayoutImage.h"
60 #include "core/layout/LayoutInline.h" 60 #include "core/layout/LayoutInline.h"
61 #include "core/layout/LayoutListMarker.h" 61 #include "core/layout/LayoutListMarker.h"
62 #include "core/layout/LayoutMenuList.h" 62 #include "core/layout/LayoutMenuList.h"
63 #include "core/layout/LayoutPart.h"
64 #include "core/layout/LayoutTextControl.h" 63 #include "core/layout/LayoutTextControl.h"
65 #include "core/layout/LayoutTextFragment.h"
66 #include "core/layout/LayoutView.h" 64 #include "core/layout/LayoutView.h"
67 #include "core/layout/api/LineLayoutAPIShim.h" 65 #include "core/layout/api/LineLayoutAPIShim.h"
68 #include "core/loader/ProgressTracker.h" 66 #include "core/loader/ProgressTracker.h"
69 #include "core/page/Page.h" 67 #include "core/page/Page.h"
70 #include "core/paint/PaintLayer.h" 68 #include "core/paint/PaintLayer.h"
71 #include "core/style/ComputedStyleConstants.h" 69 #include "core/style/ComputedStyleConstants.h"
72 #include "core/svg/SVGDocumentExtensions.h" 70 #include "core/svg/SVGDocumentExtensions.h"
73 #include "core/svg/SVGSVGElement.h" 71 #include "core/svg/SVGSVGElement.h"
74 #include "core/svg/graphics/SVGImage.h" 72 #include "core/svg/graphics/SVGImage.h"
75 #include "modules/accessibility/AXImageMapLink.h" 73 #include "modules/accessibility/AXImageMapLink.h"
(...skipping 2400 matching lines...) Expand 10 before | Expand all | Expand 10 after
2476 if (label && label->layoutObject()) { 2474 if (label && label->layoutObject()) {
2477 LayoutRect labelRect = axObjectCache().getOrCreate(label)->elementRe ct(); 2475 LayoutRect labelRect = axObjectCache().getOrCreate(label)->elementRe ct();
2478 result.unite(labelRect); 2476 result.unite(labelRect);
2479 } 2477 }
2480 } 2478 }
2481 2479
2482 return result; 2480 return result;
2483 } 2481 }
2484 2482
2485 } // namespace blink 2483 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698