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

Unified Diff: ui/views/examples/tree_view_example.cc

Issue 1894383002: MacViews: Implement Full Keyboard Access. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SetFocusBehavior
Patch Set: Rebased Created 4 years, 7 months 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: ui/views/examples/tree_view_example.cc
diff --git a/ui/views/examples/tree_view_example.cc b/ui/views/examples/tree_view_example.cc
index ddf69aef6c35849b13d429326daf7a6bf23a6f3f..b67f51940641ee10b463755f3b909b669e1a78ee 100644
--- a/ui/views/examples/tree_view_example.cc
+++ b/ui/views/examples/tree_view_example.cc
@@ -47,11 +47,11 @@ void TreeViewExample::CreateExampleView(View* container) {
tree_view_->SetModel(&model_);
tree_view_->SetController(this);
add_ = new LabelButton(this, ASCIIToUTF16("Add"));
- add_->SetFocusBehavior(View::FocusBehavior::ALWAYS);
+ Button::ConfigureDefaultFocus(add_);
remove_ = new LabelButton(this, ASCIIToUTF16("Remove"));
- remove_->SetFocusBehavior(View::FocusBehavior::ALWAYS);
+ Button::ConfigureDefaultFocus(remove_);
change_title_ = new LabelButton(this, ASCIIToUTF16("Change Title"));
- change_title_->SetFocusBehavior(View::FocusBehavior::ALWAYS);
+ Button::ConfigureDefaultFocus(change_title_);
GridLayout* layout = new GridLayout(container);
container->SetLayoutManager(layout);

Powered by Google App Engine
This is Rietveld 408576698