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

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

Issue 8477004: Have content/ create and destroy its own threads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More IWYU, missing link-time dependency for Chrome Frame. Created 9 years, 1 month 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/ui/views/accessible_pane_view.h" 5 #include "chrome/browser/ui/views/accessible_pane_view.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop.h"
9 #include "chrome/browser/ui/view_ids.h" 10 #include "chrome/browser/ui/view_ids.h"
10 #include "chrome/browser/ui/views/frame/browser_view.h" 11 #include "chrome/browser/ui/views/frame/browser_view.h"
11 #include "chrome/browser/ui/views/location_bar/location_bar_view.h" 12 #include "chrome/browser/ui/views/location_bar/location_bar_view.h"
12 #include "ui/base/accessibility/accessible_view_state.h" 13 #include "ui/base/accessibility/accessible_view_state.h"
13 #include "views/controls/button/menu_button.h" 14 #include "views/controls/button/menu_button.h"
14 #include "views/controls/native/native_view_host.h" 15 #include "views/controls/native/native_view_host.h"
15 #include "views/focus/focus_search.h" 16 #include "views/focus/focus_search.h"
16 #include "views/focus/view_storage.h" 17 #include "views/focus/view_storage.h"
17 #include "views/widget/tooltip_manager.h" 18 #include "views/widget/tooltip_manager.h"
18 #include "views/widget/widget.h" 19 #include "views/widget/widget.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 252
252 views::FocusTraversable* AccessiblePaneView::GetFocusTraversableParent() { 253 views::FocusTraversable* AccessiblePaneView::GetFocusTraversableParent() {
253 DCHECK(pane_has_focus_); 254 DCHECK(pane_has_focus_);
254 return NULL; 255 return NULL;
255 } 256 }
256 257
257 views::View* AccessiblePaneView::GetFocusTraversableParentView() { 258 views::View* AccessiblePaneView::GetFocusTraversableParentView() {
258 DCHECK(pane_has_focus_); 259 DCHECK(pane_has_focus_);
259 return NULL; 260 return NULL;
260 } 261 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698