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

Unified Diff: chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc

Issue 103493005: Rename View::set_focusable and View::set_accessibility_focusable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a few missing files Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc
diff --git a/chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc b/chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc
index 48ffdb02c571cb5a5202da08b142f4153e56b246..02c0b8d8638c44d2bfa3d990f368a5e3278ff688 100644
--- a/chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc
+++ b/chrome/browser/ui/views/accessibility/accessibility_event_router_views_unittest.cc
@@ -329,7 +329,7 @@ TEST_F(AccessibilityEventRouterViewsTest, StateChangeAfterNotification) {
ViewWithNameAndRole* child = new ViewWithNameAndRole(
ASCIIToUTF16(kOldNameASCII),
ui::AccessibilityTypes::ROLE_PUSHBUTTON);
- child->set_focusable(true);
+ child->SetFocusable(true);
contents->AddChildView(child);
// Put the view in a window.
@@ -365,7 +365,7 @@ TEST_F(AccessibilityEventRouterViewsTest, NotificationOnDeletedObject) {
ViewWithNameAndRole* child = new ViewWithNameAndRole(
ASCIIToUTF16(kNameASCII),
ui::AccessibilityTypes::ROLE_PUSHBUTTON);
- child->set_focusable(true);
+ child->SetFocusable(true);
contents->AddChildView(child);
// Put the view in a window.
« no previous file with comments | « chrome/browser/chromeos/options/wimax_config_view.cc ('k') | chrome/browser/ui/views/autofill/autofill_dialog_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698