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

Side by Side Diff: Source/core/accessibility/AXObjectCache.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/AXObject.h ('k') | Source/core/accessibility/AXRenderObject.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) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 19 matching lines...) Expand all
30 #include "core/rendering/RenderText.h" 30 #include "core/rendering/RenderText.h"
31 #include "platform/Timer.h" 31 #include "platform/Timer.h"
32 #include "wtf/Forward.h" 32 #include "wtf/Forward.h"
33 #include "wtf/HashMap.h" 33 #include "wtf/HashMap.h"
34 #include "wtf/HashSet.h" 34 #include "wtf/HashSet.h"
35 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class AbstractInlineTextBox; 39 class AbstractInlineTextBox;
40 class Document;
41 class HTMLAreaElement; 40 class HTMLAreaElement;
42 class Node;
43 class Page;
44 class RenderObject;
45 class ScrollView; 41 class ScrollView;
46 class Settings;
47 class VisiblePosition;
48 class Widget; 42 class Widget;
49 43
50 struct TextMarkerData { 44 struct TextMarkerData {
51 AXID axID; 45 AXID axID;
52 Node* node; 46 Node* node;
53 int offset; 47 int offset;
54 EAffinity affinity; 48 EAffinity affinity;
55 }; 49 };
56 50
57 class AXComputedObjectAttributeCache { 51 class AXComputedObjectAttributeCache {
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 Settings* settings(); 227 Settings* settings();
234 }; 228 };
235 229
236 bool nodeHasRole(Node*, const String& role); 230 bool nodeHasRole(Node*, const String& role);
237 // This will let you know if aria-hidden was explicitly set to false. 231 // This will let you know if aria-hidden was explicitly set to false.
238 bool isNodeAriaVisible(Node*); 232 bool isNodeAriaVisible(Node*);
239 233
240 } 234 }
241 235
242 #endif 236 #endif
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXObject.h ('k') | Source/core/accessibility/AXRenderObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698