| OLD | NEW |
| 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 * | 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 26 matching lines...) Expand all Loading... |
| 37 #include "core/frame/FrameView.h" | 37 #include "core/frame/FrameView.h" |
| 38 #include "core/frame/LocalFrame.h" | 38 #include "core/frame/LocalFrame.h" |
| 39 #include "core/frame/Settings.h" | 39 #include "core/frame/Settings.h" |
| 40 #include "core/html/HTMLDialogElement.h" | 40 #include "core/html/HTMLDialogElement.h" |
| 41 #include "core/html/HTMLFrameOwnerElement.h" | 41 #include "core/html/HTMLFrameOwnerElement.h" |
| 42 #include "core/html/parser/HTMLParserIdioms.h" | 42 #include "core/html/parser/HTMLParserIdioms.h" |
| 43 #include "core/layout/LayoutBoxModelObject.h" | 43 #include "core/layout/LayoutBoxModelObject.h" |
| 44 #include "modules/accessibility/AXObjectCacheImpl.h" | 44 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 45 #include "platform/UserGestureIndicator.h" | 45 #include "platform/UserGestureIndicator.h" |
| 46 #include "platform/text/PlatformLocale.h" | 46 #include "platform/text/PlatformLocale.h" |
| 47 #include "wtf/HashSet.h" | 47 #include "platform/wtf/HashSet.h" |
| 48 #include "wtf/StdLibExtras.h" | 48 #include "platform/wtf/StdLibExtras.h" |
| 49 #include "wtf/text/WTFString.h" | 49 #include "platform/wtf/text/WTFString.h" |
| 50 | 50 |
| 51 using blink::WebLocalizedString; | 51 using blink::WebLocalizedString; |
| 52 | 52 |
| 53 namespace blink { | 53 namespace blink { |
| 54 | 54 |
| 55 using namespace HTMLNames; | 55 using namespace HTMLNames; |
| 56 | 56 |
| 57 namespace { | 57 namespace { |
| 58 typedef HashMap<String, AccessibilityRole, CaseFoldingHash> ARIARoleMap; | 58 typedef HashMap<String, AccessibilityRole, CaseFoldingHash> ARIARoleMap; |
| 59 typedef HashSet<String, CaseFoldingHash> ARIAWidgetSet; | 59 typedef HashSet<String, CaseFoldingHash> ARIAWidgetSet; |
| (...skipping 1751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1811 } | 1811 } |
| 1812 | 1812 |
| 1813 DEFINE_TRACE(AXObject) { | 1813 DEFINE_TRACE(AXObject) { |
| 1814 visitor->Trace(children_); | 1814 visitor->Trace(children_); |
| 1815 visitor->Trace(parent_); | 1815 visitor->Trace(parent_); |
| 1816 visitor->Trace(cached_live_region_root_); | 1816 visitor->Trace(cached_live_region_root_); |
| 1817 visitor->Trace(ax_object_cache_); | 1817 visitor->Trace(ax_object_cache_); |
| 1818 } | 1818 } |
| 1819 | 1819 |
| 1820 } // namespace blink | 1820 } // namespace blink |
| OLD | NEW |