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

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

Issue 2025953002: DevTools: generate class-per domain for remote debugging protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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 14 matching lines...) Expand all
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */ 28 */
29 29
30 #ifndef AXObject_h 30 #ifndef AXObject_h
31 #define AXObject_h 31 #define AXObject_h
32 32
33 #include "core/editing/VisiblePosition.h" 33 #include "core/editing/VisiblePosition.h"
34 #include "core/editing/markers/DocumentMarker.h" 34 #include "core/editing/markers/DocumentMarker.h"
35 #include "core/inspector/protocol/Accessibility.h"
35 #include "modules/ModulesExport.h" 36 #include "modules/ModulesExport.h"
36 #include "platform/geometry/FloatQuad.h" 37 #include "platform/geometry/FloatQuad.h"
37 #include "platform/geometry/LayoutRect.h" 38 #include "platform/geometry/LayoutRect.h"
38 #include "platform/graphics/Color.h" 39 #include "platform/graphics/Color.h"
39 #include "platform/inspector_protocol/TypeBuilder.h"
40 #include "wtf/Forward.h" 40 #include "wtf/Forward.h"
41 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
42 42
43 class SkMatrix44; 43 class SkMatrix44;
44 44
45 namespace blink { 45 namespace blink {
46 46
47 class AXObject; 47 class AXObject;
48 class AXObjectCache; 48 class AXObjectCache;
49 class AXObjectCacheImpl; 49 class AXObjectCacheImpl;
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 984
985 static unsigned s_numberOfLiveAXObjects; 985 static unsigned s_numberOfLiveAXObjects;
986 }; 986 };
987 987
988 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 988 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
989 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 989 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
990 990
991 } // namespace blink 991 } // namespace blink
992 992
993 #endif // AXObject_h 993 #endif // AXObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698