Home | History | Annotate | Download | only in views

Lines Matching refs:view1

2670   View* view1 = new View();
2671 view1->SetFocusable(true);
2672 widget.GetRootView()->AddChildView(view1);
2680 focus_manager->SetFocusedView(view1);
2681 EXPECT_EQ(view1, focus_manager->GetFocusedView());
2684 view1->SetEnabled(false);
2688 view1->SetEnabled(true);
2689 focus_manager->SetFocusedView(view1);
2690 EXPECT_EQ(view1, focus_manager->GetFocusedView());
2693 view1->SetVisible(false);
2697 view1->SetVisible(true);
2698 focus_manager->SetFocusedView(view1);
2699 EXPECT_EQ(view1, focus_manager->GetFocusedView());
2703 view1->SetFocusable(false);