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

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

Issue 626133002: Clean up forward declarations in Source/core/accessibility (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 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
« no previous file with comments | « Source/core/accessibility/AXNodeObject.h ('k') | Source/core/accessibility/AXObjectCache.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) 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 24 matching lines...) Expand all
35 #include "platform/geometry/LayoutRect.h" 35 #include "platform/geometry/LayoutRect.h"
36 #include "wtf/Forward.h" 36 #include "wtf/Forward.h"
37 #include "wtf/RefPtr.h" 37 #include "wtf/RefPtr.h"
38 #include "wtf/Vector.h" 38 #include "wtf/Vector.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class AXObject; 42 class AXObject;
43 class AXObjectCache; 43 class AXObjectCache;
44 class Element; 44 class Element;
45 class LocalFrame;
46 class FrameView; 45 class FrameView;
47 class HTMLAnchorElement;
48 class HTMLAreaElement;
49 class IntPoint; 46 class IntPoint;
50 class IntSize;
51 class Node; 47 class Node;
52 class Range;
53 class RenderObject; 48 class RenderObject;
54 class RenderListItem;
55 class ScrollableArea; 49 class ScrollableArea;
56 class VisibleSelection;
57 class Widget; 50 class Widget;
58 51
59 typedef unsigned AXID; 52 typedef unsigned AXID;
60 53
61 enum AccessibilityRole { 54 enum AccessibilityRole {
62 AlertDialogRole = 1, 55 AlertDialogRole = 1,
63 AlertRole, 56 AlertRole,
64 AnnotationRole, 57 AnnotationRole,
65 ApplicationRole, 58 ApplicationRole,
66 ArticleRole, 59 ArticleRole,
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 577
585 bool m_detached; 578 bool m_detached;
586 }; 579 };
587 580
588 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 581 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
589 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 582 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
590 583
591 } // namespace blink 584 } // namespace blink
592 585
593 #endif // AXObject_h 586 #endif // AXObject_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXNodeObject.h ('k') | Source/core/accessibility/AXObjectCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698