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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 354 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
355 const gfx::Rect& bounds) OVERRIDE; | 355 const gfx::Rect& bounds) OVERRIDE; |
356 virtual FindBar* CreateFindBar() OVERRIDE; | 356 virtual FindBar* CreateFindBar() OVERRIDE; |
357 virtual web_modal::WebContentsModalDialogHost* | 357 virtual web_modal::WebContentsModalDialogHost* |
358 GetWebContentsModalDialogHost() OVERRIDE; | 358 GetWebContentsModalDialogHost() OVERRIDE; |
359 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 359 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
360 const gfx::Rect& rect) OVERRIDE; | 360 const gfx::Rect& rect) OVERRIDE; |
361 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 361 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
362 virtual void ShowPasswordGenerationBubble( | 362 virtual void ShowPasswordGenerationBubble( |
363 const gfx::Rect& rect, | 363 const gfx::Rect& rect, |
364 const content::PasswordForm& form, | 364 const autofill::PasswordForm& form, |
365 autofill::PasswordGenerator* password_generator) OVERRIDE; | 365 autofill::PasswordGenerator* password_generator) OVERRIDE; |
366 virtual void OverscrollUpdate(int delta_y) OVERRIDE; | 366 virtual void OverscrollUpdate(int delta_y) OVERRIDE; |
367 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; | 367 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; |
368 | 368 |
369 // Overridden from BrowserWindowTesting: | 369 // Overridden from BrowserWindowTesting: |
370 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 370 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
371 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 371 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
372 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 372 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
373 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 373 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
374 | 374 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; | 744 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
745 | 745 |
746 gfx::ScopedSysColorChangeListener color_change_listener_; | 746 gfx::ScopedSysColorChangeListener color_change_listener_; |
747 | 747 |
748 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 748 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
749 | 749 |
750 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 750 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
751 }; | 751 }; |
752 | 752 |
753 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 753 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |