Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: ui/accessibility/platform/test_ax_node_wrapper.cc

Issue 2490073002: MacViews/a11y: Allow accessibility clients to focus and unfocus focusable Views. (Closed)
Patch Set: Fix test. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "base/containers/hash_tables.h" 5 #include "base/containers/hash_tables.h"
6 #include "ui/accessibility/platform/test_ax_node_wrapper.h" 6 #include "ui/accessibility/platform/test_ax_node_wrapper.h"
7 7
8 namespace ui { 8 namespace ui {
9 9
10 namespace { 10 namespace {
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 bool TestAXNodeWrapper::SetStringValue(const base::string16& new_value, 122 bool TestAXNodeWrapper::SetStringValue(const base::string16& new_value,
123 bool clear_first) { 123 bool clear_first) {
124 return false; 124 return false;
125 } 125 }
126 126
127 bool TestAXNodeWrapper::CanSetStringValue() { 127 bool TestAXNodeWrapper::CanSetStringValue() {
128 return false; 128 return false;
129 } 129 }
130 130
131 bool TestAXNodeWrapper::SetFocused(bool focused) {
132 return false;
133 }
134
131 TestAXNodeWrapper::TestAXNodeWrapper(AXTree* tree, AXNode* node) 135 TestAXNodeWrapper::TestAXNodeWrapper(AXTree* tree, AXNode* node)
132 : tree_(tree), 136 : tree_(tree),
133 node_(node), 137 node_(node),
134 platform_node_(AXPlatformNode::Create(this)) { 138 platform_node_(AXPlatformNode::Create(this)) {
135 } 139 }
136 140
137 } // namespace ui 141 } // namespace ui
OLDNEW
« no previous file with comments | « ui/accessibility/platform/test_ax_node_wrapper.h ('k') | ui/views/accessibility/native_view_accessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698