| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 bool should_restore_state) OVERRIDE; | 294 bool should_restore_state) OVERRIDE; |
| 295 virtual void FocusToolbar() OVERRIDE; | 295 virtual void FocusToolbar() OVERRIDE; |
| 296 virtual void FocusAppMenu() OVERRIDE; | 296 virtual void FocusAppMenu() OVERRIDE; |
| 297 virtual void FocusBookmarksToolbar() OVERRIDE; | 297 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 298 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 298 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 299 virtual void DestroyBrowser() OVERRIDE; | 299 virtual void DestroyBrowser() OVERRIDE; |
| 300 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 300 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 301 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 301 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 302 virtual bool IsTabStripEditable() const OVERRIDE; | 302 virtual bool IsTabStripEditable() const OVERRIDE; |
| 303 virtual bool IsToolbarVisible() const OVERRIDE; | 303 virtual bool IsToolbarVisible() const OVERRIDE; |
| 304 virtual bool IsPanel() const OVERRIDE; | |
| 305 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 304 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 306 virtual void DisableInactiveFrame() OVERRIDE; | 305 virtual void DisableInactiveFrame() OVERRIDE; |
| 307 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 306 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
| 308 Profile* profile) OVERRIDE; | 307 Profile* profile) OVERRIDE; |
| 309 virtual void ToggleBookmarkBar() OVERRIDE; | 308 virtual void ToggleBookmarkBar() OVERRIDE; |
| 310 virtual void ShowUpdateChromeDialog() OVERRIDE; | 309 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 311 virtual void ShowBookmarkBubble(const GURL& url, | 310 virtual void ShowBookmarkBubble(const GURL& url, |
| 312 bool already_bookmarked) OVERRIDE; | 311 bool already_bookmarked) OVERRIDE; |
| 313 virtual void ShowBookmarkPrompt() OVERRIDE; | 312 virtual void ShowBookmarkPrompt() OVERRIDE; |
| 314 virtual void ShowChromeToMobileBubble() OVERRIDE; | 313 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 gfx::ScopedSysColorChangeListener color_change_listener_; | 738 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 740 | 739 |
| 741 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 740 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
| 742 | 741 |
| 743 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 742 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 744 | 743 |
| 745 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 744 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 746 }; | 745 }; |
| 747 | 746 |
| 748 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 747 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |