OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 virtual bool IsInMetroSnapMode() const OVERRIDE; | 289 virtual bool IsInMetroSnapMode() const OVERRIDE; |
290 #endif | 290 #endif |
291 virtual LocationBar* GetLocationBar() const OVERRIDE; | 291 virtual LocationBar* GetLocationBar() const OVERRIDE; |
292 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 292 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
293 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 293 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
294 virtual void UpdateToolbar(content::WebContents* contents, | 294 virtual void UpdateToolbar(content::WebContents* contents, |
295 bool should_restore_state) OVERRIDE; | 295 bool should_restore_state) OVERRIDE; |
296 virtual void FocusToolbar() OVERRIDE; | 296 virtual void FocusToolbar() OVERRIDE; |
297 virtual void FocusAppMenu() OVERRIDE; | 297 virtual void FocusAppMenu() OVERRIDE; |
298 virtual void FocusBookmarksToolbar() OVERRIDE; | 298 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 299 virtual void FocusInfobars() OVERRIDE; |
299 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 300 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
300 virtual void DestroyBrowser() OVERRIDE; | 301 virtual void DestroyBrowser() OVERRIDE; |
301 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 302 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
302 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 303 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
303 virtual bool IsTabStripEditable() const OVERRIDE; | 304 virtual bool IsTabStripEditable() const OVERRIDE; |
304 virtual bool IsToolbarVisible() const OVERRIDE; | 305 virtual bool IsToolbarVisible() const OVERRIDE; |
305 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 306 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
306 virtual void DisableInactiveFrame() OVERRIDE; | 307 virtual void DisableInactiveFrame() OVERRIDE; |
307 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 308 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
308 Profile* profile) OVERRIDE; | 309 Profile* profile) OVERRIDE; |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 gfx::ScopedSysColorChangeListener color_change_listener_; | 737 gfx::ScopedSysColorChangeListener color_change_listener_; |
737 | 738 |
738 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 739 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
739 | 740 |
740 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 741 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
741 | 742 |
742 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 743 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
743 }; | 744 }; |
744 | 745 |
745 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 746 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |