| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014, Google Inc. All rights reserved. | 2 * Copyright (C) 2014, 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 #include "modules/accessibility/AXProgressIndicator.h" | 72 #include "modules/accessibility/AXProgressIndicator.h" |
| 73 #include "modules/accessibility/AXRadioInput.h" | 73 #include "modules/accessibility/AXRadioInput.h" |
| 74 #include "modules/accessibility/AXSVGRoot.h" | 74 #include "modules/accessibility/AXSVGRoot.h" |
| 75 #include "modules/accessibility/AXSlider.h" | 75 #include "modules/accessibility/AXSlider.h" |
| 76 #include "modules/accessibility/AXSpinButton.h" | 76 #include "modules/accessibility/AXSpinButton.h" |
| 77 #include "modules/accessibility/AXTable.h" | 77 #include "modules/accessibility/AXTable.h" |
| 78 #include "modules/accessibility/AXTableCell.h" | 78 #include "modules/accessibility/AXTableCell.h" |
| 79 #include "modules/accessibility/AXTableColumn.h" | 79 #include "modules/accessibility/AXTableColumn.h" |
| 80 #include "modules/accessibility/AXTableHeaderContainer.h" | 80 #include "modules/accessibility/AXTableHeaderContainer.h" |
| 81 #include "modules/accessibility/AXTableRow.h" | 81 #include "modules/accessibility/AXTableRow.h" |
| 82 #include "wtf/PassRefPtr.h" | 82 #include "platform/wtf/PassRefPtr.h" |
| 83 #include "wtf/PtrUtil.h" | 83 #include "platform/wtf/PtrUtil.h" |
| 84 | 84 |
| 85 namespace blink { | 85 namespace blink { |
| 86 | 86 |
| 87 using namespace HTMLNames; | 87 using namespace HTMLNames; |
| 88 | 88 |
| 89 // static | 89 // static |
| 90 AXObjectCache* AXObjectCacheImpl::Create(Document& document) { | 90 AXObjectCache* AXObjectCacheImpl::Create(Document& document) { |
| 91 return new AXObjectCacheImpl(document); | 91 return new AXObjectCacheImpl(document); |
| 92 } | 92 } |
| 93 | 93 |
| (...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1249 visitor->Trace(document_); | 1249 visitor->Trace(document_); |
| 1250 visitor->Trace(node_object_mapping_); | 1250 visitor->Trace(node_object_mapping_); |
| 1251 | 1251 |
| 1252 visitor->Trace(objects_); | 1252 visitor->Trace(objects_); |
| 1253 visitor->Trace(notifications_to_post_); | 1253 visitor->Trace(notifications_to_post_); |
| 1254 | 1254 |
| 1255 AXObjectCache::Trace(visitor); | 1255 AXObjectCache::Trace(visitor); |
| 1256 } | 1256 } |
| 1257 | 1257 |
| 1258 } // namespace blink | 1258 } // namespace blink |
| OLD | NEW |