OLD | NEW |
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 #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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 virtual void OnWindowActivationChanged(bool active) OVERRIDE; | 368 virtual void OnWindowActivationChanged(bool active) OVERRIDE; |
369 virtual void OnWindowBeginUserBoundsChange() OVERRIDE; | 369 virtual void OnWindowBeginUserBoundsChange() OVERRIDE; |
370 virtual void OnWidgetMove() OVERRIDE; | 370 virtual void OnWidgetMove() OVERRIDE; |
371 | 371 |
372 // Overridden from views::ClientView: | 372 // Overridden from views::ClientView: |
373 virtual bool CanClose() OVERRIDE; | 373 virtual bool CanClose() OVERRIDE; |
374 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 374 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
375 virtual gfx::Size GetMinimumSize() OVERRIDE; | 375 virtual gfx::Size GetMinimumSize() OVERRIDE; |
376 | 376 |
377 // InfoBarContainer::Delegate overrides | 377 // InfoBarContainer::Delegate overrides |
378 virtual void InfoBarContainerSizeChanged(bool is_animating) OVERRIDE; | 378 virtual void InfoBarContainerHeightChanged(bool is_animating) OVERRIDE; |
379 | 379 |
380 // views::SingleSplitView::Observer overrides: | 380 // views::SingleSplitView::Observer overrides: |
381 virtual bool SplitHandleMoved(views::SingleSplitView* view) OVERRIDE; | 381 virtual bool SplitHandleMoved(views::SingleSplitView* view) OVERRIDE; |
382 | 382 |
383 protected: | 383 protected: |
384 // Appends to |toolbars| a pointer to each AccessiblePaneView that | 384 // Appends to |toolbars| a pointer to each AccessiblePaneView that |
385 // can be traversed using F6, in the order they should be traversed. | 385 // can be traversed using F6, in the order they should be traversed. |
386 // Abstracted here so that it can be extended for Chrome OS. | 386 // Abstracted here so that it can be extended for Chrome OS. |
387 virtual void GetAccessiblePanes( | 387 virtual void GetAccessiblePanes( |
388 std::vector<AccessiblePaneView*>* panes); | 388 std::vector<AccessiblePaneView*>* panes); |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
671 | 671 |
672 NotificationRegistrar registrar_; | 672 NotificationRegistrar registrar_; |
673 | 673 |
674 // Used to measure the loading spinner animation rate. | 674 // Used to measure the loading spinner animation rate. |
675 base::TimeTicks last_animation_time_; | 675 base::TimeTicks last_animation_time_; |
676 | 676 |
677 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 677 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
678 }; | 678 }; |
679 | 679 |
680 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 680 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |