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

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

Issue 25494003: Move geometry classes from core/platform/graphics to platform/geometry (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
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/platform/graphics/FloatQuad.h" 35 #include "platform/geometry/FloatQuad.h"
36 #include "core/platform/graphics/LayoutRect.h" 36 #include "platform/geometry/LayoutRect.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 #include "wtf/RefPtr.h" 38 #include "wtf/RefPtr.h"
39 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 40
41 namespace WebCore { 41 namespace WebCore {
42 42
43 class AccessibilityObject; 43 class AccessibilityObject;
44 class AXObjectCache; 44 class AXObjectCache;
45 class Element; 45 class Element;
46 class Frame; 46 class Frame;
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 #if !HAVE(ACCESSIBILITY) 587 #if !HAVE(ACCESSIBILITY)
588 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje ct::children() { return m_children; } 588 inline const AccessibilityObject::AccessibilityChildrenVector& AccessibilityObje ct::children() { return m_children; }
589 inline String AccessibilityObject::actionVerb() const { return emptyString(); } 589 inline String AccessibilityObject::actionVerb() const { return emptyString(); }
590 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const { return -1; } 590 inline int AccessibilityObject::lineForPosition(const VisiblePosition&) const { return -1; }
591 inline void AccessibilityObject::updateBackingStore() { } 591 inline void AccessibilityObject::updateBackingStore() { }
592 #endif 592 #endif
593 593
594 } // namespace WebCore 594 } // namespace WebCore
595 595
596 #endif // AccessibilityObject_h 596 #endif // AccessibilityObject_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AccessibilityNodeObject.h ('k') | Source/core/accessibility/AccessibilityProgressIndicator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698