| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "SkMatrix44.h" | 33 #include "SkMatrix44.h" |
| 34 #include "core/HTMLNames.h" | 34 #include "core/HTMLNames.h" |
| 35 #include "core/css/CSSPrimitiveValueMappings.h" | 35 #include "core/css/CSSPrimitiveValueMappings.h" |
| 36 #include "core/dom/Document.h" | 36 #include "core/dom/Document.h" |
| 37 #include "core/dom/Node.h" | 37 #include "core/dom/Node.h" |
| 38 #include "core/editing/markers/DocumentMarker.h" | 38 #include "core/editing/markers/DocumentMarker.h" |
| 39 #include "core/frame/FrameView.h" | 39 #include "core/frame/FrameView.h" |
| 40 #include "core/frame/VisualViewport.h" | 40 #include "core/frame/VisualViewport.h" |
| 41 #include "core/input/KeyboardEventManager.h" | 41 #include "core/input/KeyboardEventManager.h" |
| 42 #include "core/page/Page.h" |
| 42 #include "core/style/ComputedStyle.h" | 43 #include "core/style/ComputedStyle.h" |
| 43 #include "core/page/Page.h" | |
| 44 #include "modules/accessibility/AXObject.h" | 44 #include "modules/accessibility/AXObject.h" |
| 45 #include "modules/accessibility/AXObjectCacheImpl.h" | 45 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 46 #include "modules/accessibility/AXTable.h" | 46 #include "modules/accessibility/AXTable.h" |
| 47 #include "modules/accessibility/AXTableCell.h" | 47 #include "modules/accessibility/AXTableCell.h" |
| 48 #include "modules/accessibility/AXTableColumn.h" | 48 #include "modules/accessibility/AXTableColumn.h" |
| 49 #include "modules/accessibility/AXTableRow.h" | 49 #include "modules/accessibility/AXTableRow.h" |
| 50 #include "platform/wtf/text/StringBuilder.h" |
| 50 #include "public/platform/WebFloatRect.h" | 51 #include "public/platform/WebFloatRect.h" |
| 51 #include "public/platform/WebPoint.h" | 52 #include "public/platform/WebPoint.h" |
| 52 #include "public/platform/WebRect.h" | 53 #include "public/platform/WebRect.h" |
| 53 #include "public/platform/WebString.h" | 54 #include "public/platform/WebString.h" |
| 54 #include "public/platform/WebURL.h" | 55 #include "public/platform/WebURL.h" |
| 55 #include "public/web/WebDocument.h" | 56 #include "public/web/WebDocument.h" |
| 56 #include "public/web/WebElement.h" | 57 #include "public/web/WebElement.h" |
| 57 #include "public/web/WebNode.h" | 58 #include "public/web/WebNode.h" |
| 58 #include "web/WebLocalFrameImpl.h" | 59 #include "web/WebLocalFrameImpl.h" |
| 59 #include "web/WebViewImpl.h" | 60 #include "web/WebViewImpl.h" |
| 60 #include "wtf/text/StringBuilder.h" | |
| 61 | 61 |
| 62 namespace blink { | 62 namespace blink { |
| 63 | 63 |
| 64 class WebAXSparseAttributeClientAdapter : public AXSparseAttributeClient { | 64 class WebAXSparseAttributeClientAdapter : public AXSparseAttributeClient { |
| 65 public: | 65 public: |
| 66 WebAXSparseAttributeClientAdapter(WebAXSparseAttributeClient& attributeMap) | 66 WebAXSparseAttributeClientAdapter(WebAXSparseAttributeClient& attributeMap) |
| 67 : m_attributeMap(attributeMap) {} | 67 : m_attributeMap(attributeMap) {} |
| 68 virtual ~WebAXSparseAttributeClientAdapter() {} | 68 virtual ~WebAXSparseAttributeClientAdapter() {} |
| 69 | 69 |
| 70 private: | 70 private: |
| (...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1551 WebAXObject& WebAXObject::operator=(AXObject* object) { | 1551 WebAXObject& WebAXObject::operator=(AXObject* object) { |
| 1552 m_private = object; | 1552 m_private = object; |
| 1553 return *this; | 1553 return *this; |
| 1554 } | 1554 } |
| 1555 | 1555 |
| 1556 WebAXObject::operator AXObject*() const { | 1556 WebAXObject::operator AXObject*() const { |
| 1557 return m_private.get(); | 1557 return m_private.get(); |
| 1558 } | 1558 } |
| 1559 | 1559 |
| 1560 } // namespace blink | 1560 } // namespace blink |
| OLD | NEW |