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

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

Issue 347643002: Reduce forward declarations in core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 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/dom/Attr.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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class AXObject; 42 class AXObject;
43 class AXObjectCache; 43 class AXObjectCache;
44 class Element; 44 class Element;
45 class LocalFrame; 45 class LocalFrame;
46 class FrameView; 46 class FrameView;
47 class HTMLAnchorElement; 47 class HTMLAnchorElement;
48 class HTMLAreaElement; 48 class HTMLAreaElement;
49 class IntPoint; 49 class IntPoint;
50 class IntSize; 50 class IntSize;
51 class Node; 51 class Node;
52 class Range;
52 class RenderObject; 53 class RenderObject;
53 class RenderListItem; 54 class RenderListItem;
54 class ScrollableArea; 55 class ScrollableArea;
55 class VisibleSelection; 56 class VisibleSelection;
56 class Widget; 57 class Widget;
57 58
58 typedef unsigned AXID; 59 typedef unsigned AXID;
59 60
60 enum AccessibilityRole { 61 enum AccessibilityRole {
61 AlertDialogRole = 1, 62 AlertDialogRole = 1,
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 574
574 bool m_detached; 575 bool m_detached;
575 }; 576 };
576 577
577 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 578 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
578 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 579 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
579 580
580 } // namespace WebCore 581 } // namespace WebCore
581 582
582 #endif // AXObject_h 583 #endif // AXObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/core/dom/Attr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698