| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 bool should_restore_state) OVERRIDE; | 297 bool should_restore_state) OVERRIDE; |
| 298 virtual void FocusToolbar() OVERRIDE; | 298 virtual void FocusToolbar() OVERRIDE; |
| 299 virtual void FocusAppMenu() OVERRIDE; | 299 virtual void FocusAppMenu() OVERRIDE; |
| 300 virtual void FocusBookmarksToolbar() OVERRIDE; | 300 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 301 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 301 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 302 virtual void DestroyBrowser() OVERRIDE; | 302 virtual void DestroyBrowser() OVERRIDE; |
| 303 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 303 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 304 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 304 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 305 virtual bool IsTabStripEditable() const OVERRIDE; | 305 virtual bool IsTabStripEditable() const OVERRIDE; |
| 306 virtual bool IsToolbarVisible() const OVERRIDE; | 306 virtual bool IsToolbarVisible() const OVERRIDE; |
| 307 virtual bool IsPanel() const OVERRIDE; | |
| 308 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 307 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 309 virtual void DisableInactiveFrame() OVERRIDE; | 308 virtual void DisableInactiveFrame() OVERRIDE; |
| 310 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 309 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
| 311 Profile* profile) OVERRIDE; | 310 Profile* profile) OVERRIDE; |
| 312 virtual void ToggleBookmarkBar() OVERRIDE; | 311 virtual void ToggleBookmarkBar() OVERRIDE; |
| 313 virtual void ShowUpdateChromeDialog() OVERRIDE; | 312 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 314 virtual void ShowBookmarkBubble(const GURL& url, | 313 virtual void ShowBookmarkBubble(const GURL& url, |
| 315 bool already_bookmarked) OVERRIDE; | 314 bool already_bookmarked) OVERRIDE; |
| 316 virtual void ShowBookmarkPrompt() OVERRIDE; | 315 virtual void ShowBookmarkPrompt() OVERRIDE; |
| 317 virtual void ShowChromeToMobileBubble() OVERRIDE; | 316 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 gfx::ScopedSysColorChangeListener color_change_listener_; | 747 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 749 | 748 |
| 750 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 749 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
| 751 | 750 |
| 752 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 751 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 753 | 752 |
| 754 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 753 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 755 }; | 754 }; |
| 756 | 755 |
| 757 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 756 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |