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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 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 * 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 14 matching lines...) Expand all
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef AXLayoutObject_h 29 #ifndef AXLayoutObject_h
30 #define AXLayoutObject_h 30 #define AXLayoutObject_h
31 31
32 #include "modules/ModulesExport.h" 32 #include "modules/ModulesExport.h"
33 #include "modules/accessibility/AXNodeObject.h" 33 #include "modules/accessibility/AXNodeObject.h"
34 #include "platform/geometry/LayoutRect.h" 34 #include "platform/geometry/LayoutRect.h"
35 #include "wtf/Forward.h" 35 #include "platform/wtf/Forward.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class AXObjectCacheImpl; 39 class AXObjectCacheImpl;
40 class AXSVGRoot; 40 class AXSVGRoot;
41 class Element; 41 class Element;
42 class FrameView; 42 class FrameView;
43 class HTMLAreaElement; 43 class HTMLAreaElement;
44 class IntPoint; 44 class IntPoint;
45 class Node; 45 class Node;
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 AXRange TextControlSelection() const; 216 AXRange TextControlSelection() const;
217 int IndexForVisiblePosition(const VisiblePosition&) const; 217 int IndexForVisiblePosition(const VisiblePosition&) const;
218 AXLayoutObject* GetUnignoredObjectFromNode(Node&) const; 218 AXLayoutObject* GetUnignoredObjectFromNode(Node&) const;
219 }; 219 };
220 220
221 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, IsAXLayoutObject()); 221 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, IsAXLayoutObject());
222 222
223 } // namespace blink 223 } // namespace blink
224 224
225 #endif // AXLayoutObject_h 225 #endif // AXLayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698