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

Side by Side Diff: Source/core/accessibility/AccessibilityObject.h

Issue 17480002: Remove unused includes from core/accessibility, core/css and core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebased ; update <wtf/Foo.h> to "wtf/Foo.h" in changed files 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nuanti Ltd. 3 * Copyright (C) 2008 Nuanti Ltd.
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 14 matching lines...) Expand all
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #ifndef AccessibilityObject_h 30 #ifndef AccessibilityObject_h
31 #define AccessibilityObject_h 31 #define AccessibilityObject_h
32 32
33 #include "core/editing/TextIterator.h" 33 #include "core/editing/TextIterator.h"
34 #include "core/editing/VisiblePosition.h" 34 #include "core/editing/VisiblePosition.h"
35 #include "core/editing/VisibleSelection.h"
36 #include "core/platform/graphics/FloatQuad.h" 35 #include "core/platform/graphics/FloatQuad.h"
37 #include "core/platform/graphics/LayoutRect.h" 36 #include "core/platform/graphics/LayoutRect.h"
38 #include <wtf/Forward.h> 37 #include "wtf/Forward.h"
39 #include <wtf/RefPtr.h> 38 #include "wtf/RefPtr.h"
40 #include <wtf/Vector.h> 39 #include "wtf/Vector.h"
41 40
42 namespace WebCore { 41 namespace WebCore {
43 42
44 class AccessibilityObject; 43 class AccessibilityObject;
45 class AXObjectCache; 44 class AXObjectCache;
46 class Element; 45 class Element;
47 class Frame; 46 class Frame;
48 class FrameView; 47 class FrameView;
49 class HTMLAnchorElement; 48 class HTMLAnchorElement;
50 class HTMLAreaElement; 49 class HTMLAreaElement;
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 #if !HAVE(ACCESSIBILITY) 556 #if !HAVE(ACCESSIBILITY)
558 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje ct::children() { return m_children; } 557 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje ct::children() { return m_children; }
559 inline String AccessibilityObject::actionVerb() const { return emptyString(); } 558 inline String AccessibilityObject::actionVerb() const { return emptyString(); }
560 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const { return -1; } 559 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const { return -1; }
561 inline void AccessibilityObject::updateBackingStore() { } 560 inline void AccessibilityObject::updateBackingStore() { }
562 #endif 561 #endif
563 562
564 } // namespace WebCore 563 } // namespace WebCore
565 564
566 #endif // AccessibilityObject_h 565 #endif // AccessibilityObject_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AccessibilityNodeObject.cpp ('k') | Source/core/accessibility/AccessibilityObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698