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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 class TabStrip; | 58 class TabStrip; |
59 class TabStripModel; | 59 class TabStripModel; |
60 class ToolbarView; | 60 class ToolbarView; |
61 class TopContainerView; | 61 class TopContainerView; |
62 class WebContentsCloseHandler; | 62 class WebContentsCloseHandler; |
63 | 63 |
64 #if defined(OS_WIN) | 64 #if defined(OS_WIN) |
65 class JumpList; | 65 class JumpList; |
66 #endif | 66 #endif |
67 | 67 |
68 namespace autofill { | |
69 class PasswordGenerator; | |
70 } | |
71 | |
72 namespace content { | 68 namespace content { |
73 class RenderFrameHost; | 69 class RenderFrameHost; |
74 } | 70 } |
75 | 71 |
76 namespace extensions { | 72 namespace extensions { |
77 class Extension; | 73 class Extension; |
78 } | 74 } |
79 | 75 |
80 namespace views { | 76 namespace views { |
81 class AccessiblePaneView; | 77 class AccessiblePaneView; |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 virtual void Paste() OVERRIDE; | 356 virtual void Paste() OVERRIDE; |
361 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 357 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
362 const gfx::Rect& bounds) OVERRIDE; | 358 const gfx::Rect& bounds) OVERRIDE; |
363 virtual FindBar* CreateFindBar() OVERRIDE; | 359 virtual FindBar* CreateFindBar() OVERRIDE; |
364 virtual web_modal::WebContentsModalDialogHost* | 360 virtual web_modal::WebContentsModalDialogHost* |
365 GetWebContentsModalDialogHost() OVERRIDE; | 361 GetWebContentsModalDialogHost() OVERRIDE; |
366 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 362 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
367 const gfx::Rect& rect) OVERRIDE; | 363 const gfx::Rect& rect) OVERRIDE; |
368 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, | 364 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, |
369 const signin::ManageAccountsParams& manage_accounts_params) OVERRIDE; | 365 const signin::ManageAccountsParams& manage_accounts_params) OVERRIDE; |
370 virtual void ShowPasswordGenerationBubble( | |
371 const gfx::Rect& rect, | |
372 const autofill::PasswordForm& form, | |
373 autofill::PasswordGenerator* password_generator) OVERRIDE; | |
374 virtual void OverscrollUpdate(int delta_y) OVERRIDE; | 366 virtual void OverscrollUpdate(int delta_y) OVERRIDE; |
375 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; | 367 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; |
376 virtual void ExecuteExtensionCommand( | 368 virtual void ExecuteExtensionCommand( |
377 const extensions::Extension* extension, | 369 const extensions::Extension* extension, |
378 const extensions::Command& command) OVERRIDE; | 370 const extensions::Command& command) OVERRIDE; |
379 | 371 |
380 // Overridden from BrowserWindowTesting: | 372 // Overridden from BrowserWindowTesting: |
381 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 373 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
382 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 374 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
383 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 375 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; | 710 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
719 | 711 |
720 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 712 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
721 | 713 |
722 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 714 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
723 | 715 |
724 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 716 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
725 }; | 717 }; |
726 | 718 |
727 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 719 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |