| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/renderer/renderer_accessibility_complete.h" | 5 #include "content/renderer/accessibility/renderer_accessibility_complete.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
| 9 #include "content/renderer/accessibility_node_serializer.h" | 9 #include "content/renderer/accessibility/accessibility_node_serializer.h" |
| 10 #include "content/renderer/render_view_impl.h" | 10 #include "content/renderer/render_view_impl.h" |
| 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec
t.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObjec
t.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputElement.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNode.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
| 17 | 17 |
| 18 using WebKit::WebAccessibilityNotification; | 18 using WebKit::WebAccessibilityNotification; |
| 19 using WebKit::WebAccessibilityObject; | 19 using WebKit::WebAccessibilityObject; |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 if (type == AccessibilityNotificationChildrenChanged || | 537 if (type == AccessibilityNotificationChildrenChanged || |
| 538 type == AccessibilityNotificationLoadComplete || | 538 type == AccessibilityNotificationLoadComplete || |
| 539 type == AccessibilityNotificationLiveRegionChanged || | 539 type == AccessibilityNotificationLiveRegionChanged || |
| 540 type == AccessibilityNotificationSelectedChildrenChanged) { | 540 type == AccessibilityNotificationSelectedChildrenChanged) { |
| 541 return true; | 541 return true; |
| 542 } | 542 } |
| 543 return false; | 543 return false; |
| 544 } | 544 } |
| 545 | 545 |
| 546 } // namespace content | 546 } // namespace content |
| OLD | NEW |