OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/logging.h" | 5 #include "base/logging.h" |
6 #include "chrome/browser/view_ids.h" | 6 #include "chrome/browser/ui/view_ids.h" |
7 #include "chrome/browser/views/frame/browser_view.h" | 7 #include "chrome/browser/ui/views/frame/browser_view.h" |
8 #include "chrome/browser/views/location_bar/location_bar_view.h" | 8 #include "chrome/browser/ui/views/location_bar/location_bar_view.h" |
9 #include "chrome/browser/views/accessible_pane_view.h" | 9 #include "chrome/browser/ui/views/accessible_pane_view.h" |
10 #include "views/controls/button/menu_button.h" | 10 #include "views/controls/button/menu_button.h" |
11 #include "views/controls/native/native_view_host.h" | 11 #include "views/controls/native/native_view_host.h" |
12 #include "views/focus/focus_search.h" | 12 #include "views/focus/focus_search.h" |
13 #include "views/focus/view_storage.h" | 13 #include "views/focus/view_storage.h" |
14 #include "views/widget/tooltip_manager.h" | 14 #include "views/widget/tooltip_manager.h" |
15 #include "views/widget/widget.h" | 15 #include "views/widget/widget.h" |
16 | 16 |
17 AccessiblePaneView::AccessiblePaneView() | 17 AccessiblePaneView::AccessiblePaneView() |
18 : pane_has_focus_(false), | 18 : pane_has_focus_(false), |
19 ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)), | 19 ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)), |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 | 242 |
243 views::FocusTraversable* AccessiblePaneView::GetFocusTraversableParent() { | 243 views::FocusTraversable* AccessiblePaneView::GetFocusTraversableParent() { |
244 DCHECK(pane_has_focus_); | 244 DCHECK(pane_has_focus_); |
245 return NULL; | 245 return NULL; |
246 } | 246 } |
247 | 247 |
248 views::View* AccessiblePaneView::GetFocusTraversableParentView() { | 248 views::View* AccessiblePaneView::GetFocusTraversableParentView() { |
249 DCHECK(pane_has_focus_); | 249 DCHECK(pane_has_focus_); |
250 return NULL; | 250 return NULL; |
251 } | 251 } |
OLD | NEW |