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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, Google 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 20 matching lines...) Expand all
31 31
32 #include "modules/ModulesExport.h" 32 #include "modules/ModulesExport.h"
33 #include "modules/accessibility/AXObject.h" 33 #include "modules/accessibility/AXObject.h"
34 #include "wtf/Forward.h" 34 #include "wtf/Forward.h"
35 35
36 namespace blink { 36 namespace blink {
37 37
38 class AXObjectCacheImpl; 38 class AXObjectCacheImpl;
39 class Element; 39 class Element;
40 class HTMLLabelElement; 40 class HTMLLabelElement;
41 class LayoutRect;
42 class Node; 41 class Node;
43 42
44 class MODULES_EXPORT AXNodeObject : public AXObject { 43 class MODULES_EXPORT AXNodeObject : public AXObject {
45 WTF_MAKE_NONCOPYABLE(AXNodeObject); 44 WTF_MAKE_NONCOPYABLE(AXNodeObject);
46 45
47 protected: 46 protected:
48 AXNodeObject(Node*, AXObjectCacheImpl&); 47 AXNodeObject(Node*, AXObjectCacheImpl&);
49 48
50 public: 49 public:
51 static AXNodeObject* create(Node*, AXObjectCacheImpl&); 50 static AXNodeObject* create(Node*, AXObjectCacheImpl&);
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 AXRelatedObjectVector*, 234 AXRelatedObjectVector*,
236 NameSources*, 235 NameSources*,
237 bool* foundTextAlternative) const; 236 bool* foundTextAlternative) const;
238 float stepValueForRange() const; 237 float stepValueForRange() const;
239 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const; 238 bool isDescendantOfElementType(const HTMLQualifiedName& tagName) const;
240 }; 239 };
241 240
242 } // namespace blink 241 } // namespace blink
243 242
244 #endif // AXNodeObject_h 243 #endif // AXNodeObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698