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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 FullscreenExitBubbleType bubble_type) OVERRIDE; | 255 FullscreenExitBubbleType bubble_type) OVERRIDE; |
256 virtual bool IsFullscreen() const OVERRIDE; | 256 virtual bool IsFullscreen() const OVERRIDE; |
257 virtual LocationBar* GetLocationBar() const OVERRIDE; | 257 virtual LocationBar* GetLocationBar() const OVERRIDE; |
258 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 258 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
259 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; | 259 virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE; |
260 virtual void UpdateToolbar(TabContentsWrapper* contents, | 260 virtual void UpdateToolbar(TabContentsWrapper* contents, |
261 bool should_restore_state) OVERRIDE; | 261 bool should_restore_state) OVERRIDE; |
262 virtual void FocusToolbar() OVERRIDE; | 262 virtual void FocusToolbar() OVERRIDE; |
263 virtual void FocusAppMenu() OVERRIDE; | 263 virtual void FocusAppMenu() OVERRIDE; |
264 virtual void FocusBookmarksToolbar() OVERRIDE; | 264 virtual void FocusBookmarksToolbar() OVERRIDE; |
265 virtual void FocusChromeOSStatus() OVERRIDE {} | |
266 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 265 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
267 virtual void DestroyBrowser() OVERRIDE; | 266 virtual void DestroyBrowser() OVERRIDE; |
268 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 267 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
269 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 268 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
270 virtual bool IsTabStripEditable() const OVERRIDE; | 269 virtual bool IsTabStripEditable() const OVERRIDE; |
271 virtual bool IsToolbarVisible() const OVERRIDE; | 270 virtual bool IsToolbarVisible() const OVERRIDE; |
272 virtual bool IsPanel() const OVERRIDE; | 271 virtual bool IsPanel() const OVERRIDE; |
273 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 272 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
274 virtual void DisableInactiveFrame() OVERRIDE; | 273 virtual void DisableInactiveFrame() OVERRIDE; |
275 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 274 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 PendingFullscreenRequest fullscreen_request_; | 690 PendingFullscreenRequest fullscreen_request_; |
692 | 691 |
693 BrowserWindowMoveObserver* move_observer_; | 692 BrowserWindowMoveObserver* move_observer_; |
694 | 693 |
695 gfx::ScopedSysColorChangeListener color_change_listener_; | 694 gfx::ScopedSysColorChangeListener color_change_listener_; |
696 | 695 |
697 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 696 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
698 }; | 697 }; |
699 | 698 |
700 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 699 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |