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

Side by Side Diff: chrome/browser/ui/views/accessible_pane_view.cc

Issue 5582002: Move:... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/view_ids.h ('k') | chrome/browser/ui/views/bookmark_bar_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/view_ids.h ('k') | chrome/browser/ui/views/bookmark_bar_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698