summaryrefslogtreecommitdiffstats
path: root/ui/views/view.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ui/views/view.cc')
-rw-r--r--ui/views/view.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc
index f4fe78c..7937f5d 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -293,6 +293,11 @@ void View::GetViewsWithGroup(int group, ViewVector* vec) const {
(*it)->GetViewsWithGroup(group, vec);
}
+View* View::GetSelectedViewForGroup(int group_id) {
+ // TODO(beng): implementme
+ return NULL;
+}
+
// Painting --------------------------------------------------------------------
void View::Invalidate() {
@@ -393,6 +398,25 @@ bool View::SkipDefaultKeyEventProcessing(const KeyEvent& event) const {
return false;
}
+bool View::IsGroupFocusTraversable() const {
+ return true;
+}
+
+bool View::IsFocusableInRootView() const {
+ // TODO(beng): kill this, replace with direct check in focus manager.
+ return IsFocusable();
+}
+
+bool View::IsAccessibilityFocusableInRootView() const {
+ // TODO(beng): kill this, replace with direct check in focus manager.
+ return false;
+}
+
+FocusTraversable* View::GetPaneFocusTraversable() const {
+ // TODO(beng): figure out what to do about this.
+ return NULL;
+}
+
void View::OnFocus(/* const FocusEvent& event */) {
}