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

Unified Diff: ash/focus_cycler_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
« no previous file with comments | « no previous file | ash/shelf/overflow_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/focus_cycler_unittest.cc
diff --git a/ash/focus_cycler_unittest.cc b/ash/focus_cycler_unittest.cc
index 8c02491df999f356bc005a394ce344cd1bd88be9..ed5340e251039be350d6fb0df60e0e9cedfd9bb6 100644
--- a/ash/focus_cycler_unittest.cc
+++ b/ash/focus_cycler_unittest.cc
@@ -315,22 +315,22 @@ TEST_F(FocusCyclerTest, CycleFocusThroughWindowWithPanes) {
root_view->AddChildView(pane1);
views::View* view1 = new views::View;
- view1->set_focusable(true);
+ view1->SetFocusable(true);
pane1->AddChildView(view1);
views::View* view2 = new views::View;
- view2->set_focusable(true);
+ view2->SetFocusable(true);
pane1->AddChildView(view2);
views::AccessiblePaneView* pane2 = new views::AccessiblePaneView();
root_view->AddChildView(pane2);
views::View* view3 = new views::View;
- view3->set_focusable(true);
+ view3->SetFocusable(true);
pane2->AddChildView(view3);
views::View* view4 = new views::View;
- view4->set_focusable(true);
+ view4->SetFocusable(true);
pane2->AddChildView(view4);
std::vector<views::View*> panes;
« no previous file with comments | « no previous file | ash/shelf/overflow_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698