| Index: ui/accessibility/platform/test_ax_node_wrapper.cc
|
| diff --git a/ui/accessibility/platform/test_ax_node_wrapper.cc b/ui/accessibility/platform/test_ax_node_wrapper.cc
|
| index 7388fd35758e77c4288f815f48bd1a9a02be6d23..2910684aeebfa476e47e38e4637d9f4333758430 100644
|
| --- a/ui/accessibility/platform/test_ax_node_wrapper.cc
|
| +++ b/ui/accessibility/platform/test_ax_node_wrapper.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "base/containers/hash_tables.h"
|
| +#include "ui/accessibility/ax_action_data.h"
|
| #include "ui/accessibility/platform/test_ax_node_wrapper.h"
|
|
|
| namespace ui {
|
| @@ -116,21 +117,12 @@ TestAXNodeWrapper::GetTargetForNativeAccessibilityEvent() {
|
| return gfx::kNullAcceleratedWidget;
|
| }
|
|
|
| -void TestAXNodeWrapper::DoDefaultAction() {
|
| -}
|
| -
|
| -bool TestAXNodeWrapper::SetStringValue(const base::string16& new_value,
|
| - bool clear_first) {
|
| +bool TestAXNodeWrapper::AccessibilityPerformAction(
|
| + const ui::AXActionData& data) {
|
| return false;
|
| }
|
|
|
| -bool TestAXNodeWrapper::CanSetStringValue() {
|
| - return false;
|
| -}
|
| -
|
| -bool TestAXNodeWrapper::SetFocused(bool focused) {
|
| - return false;
|
| -}
|
| +void TestAXNodeWrapper::DoDefaultAction() {}
|
|
|
| TestAXNodeWrapper::TestAXNodeWrapper(AXTree* tree, AXNode* node)
|
| : tree_(tree),
|
|
|