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

Side by Side Diff: Source/core/accessibility/AXObjectCache.cpp

Issue 16282004: Remove unused includes from various .cpp files in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: re-add HTMLFormElement to EmptyClients for windows Created 7 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 | « no previous file | Source/core/animation/DocumentTimeline.cpp » ('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) 2008, 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/accessibility/AccessibilityScrollView.h" 50 #include "core/accessibility/AccessibilityScrollView.h"
51 #include "core/accessibility/AccessibilityScrollbar.h" 51 #include "core/accessibility/AccessibilityScrollbar.h"
52 #include "core/accessibility/AccessibilitySlider.h" 52 #include "core/accessibility/AccessibilitySlider.h"
53 #include "core/accessibility/AccessibilitySpinButton.h" 53 #include "core/accessibility/AccessibilitySpinButton.h"
54 #include "core/accessibility/AccessibilityTable.h" 54 #include "core/accessibility/AccessibilityTable.h"
55 #include "core/accessibility/AccessibilityTableCell.h" 55 #include "core/accessibility/AccessibilityTableCell.h"
56 #include "core/accessibility/AccessibilityTableColumn.h" 56 #include "core/accessibility/AccessibilityTableColumn.h"
57 #include "core/accessibility/AccessibilityTableHeaderContainer.h" 57 #include "core/accessibility/AccessibilityTableHeaderContainer.h"
58 #include "core/accessibility/AccessibilityTableRow.h" 58 #include "core/accessibility/AccessibilityTableRow.h"
59 #include "core/dom/Document.h" 59 #include "core/dom/Document.h"
60 #include "core/editing/Editor.h"
61 #include "core/html/HTMLAreaElement.h" 60 #include "core/html/HTMLAreaElement.h"
62 #include "core/html/HTMLImageElement.h" 61 #include "core/html/HTMLImageElement.h"
63 #include "core/html/HTMLInputElement.h" 62 #include "core/html/HTMLInputElement.h"
64 #include "core/html/HTMLLabelElement.h" 63 #include "core/html/HTMLLabelElement.h"
65 #include "core/html/shadow/MediaControlElements.h"
66 #include "core/page/Chrome.h" 64 #include "core/page/Chrome.h"
67 #include "core/page/ChromeClient.h" 65 #include "core/page/ChromeClient.h"
68 #include "core/page/FocusController.h" 66 #include "core/page/FocusController.h"
69 #include "core/page/Frame.h" 67 #include "core/page/Frame.h"
70 #include "core/page/Page.h" 68 #include "core/page/Page.h"
71 #include "core/platform/ScrollView.h" 69 #include "core/platform/ScrollView.h"
72 #include "core/rendering/RenderListBox.h" 70 #include "core/rendering/RenderListBox.h"
73 #include "core/rendering/RenderMenuList.h" 71 #include "core/rendering/RenderMenuList.h"
74 #include "core/rendering/RenderProgress.h" 72 #include "core/rendering/RenderProgress.h"
75 #include "core/rendering/RenderSlider.h" 73 #include "core/rendering/RenderSlider.h"
(...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 void AXObjectCache::handleScrolledToAnchor(const Node* anchorNode) 1022 void AXObjectCache::handleScrolledToAnchor(const Node* anchorNode)
1025 { 1023 {
1026 // The anchor node may not be accessible. Post the notification for the 1024 // The anchor node may not be accessible. Post the notification for the
1027 // first accessible object. 1025 // first accessible object.
1028 postPlatformNotification(AccessibilityObject::firstAccessibleObjectFromNode( anchorNode), AXScrolledToAnchor); 1026 postPlatformNotification(AccessibilityObject::firstAccessibleObjectFromNode( anchorNode), AXScrolledToAnchor);
1029 } 1027 }
1030 1028
1031 } // namespace WebCore 1029 } // namespace WebCore
1032 1030
1033 #endif // HAVE(ACCESSIBILITY) 1031 #endif // HAVE(ACCESSIBILITY)
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/DocumentTimeline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698