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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 { | 68 namespace autofill { |
69 class PasswordGenerator; | 69 class PasswordGenerator; |
msw
2014/09/06 02:15:26
Remove this and the autofill namespace.
Garrett Casto
2014/09/10 00:10:17
Done.
| |
70 } | 70 } |
71 | 71 |
72 namespace content { | 72 namespace content { |
73 class RenderFrameHost; | 73 class RenderFrameHost; |
74 } | 74 } |
75 | 75 |
76 namespace extensions { | 76 namespace extensions { |
77 class Extension; | 77 class Extension; |
78 } | 78 } |
79 | 79 |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
360 virtual void Paste() OVERRIDE; | 360 virtual void Paste() OVERRIDE; |
361 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 361 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
362 const gfx::Rect& bounds) OVERRIDE; | 362 const gfx::Rect& bounds) OVERRIDE; |
363 virtual FindBar* CreateFindBar() OVERRIDE; | 363 virtual FindBar* CreateFindBar() OVERRIDE; |
364 virtual web_modal::WebContentsModalDialogHost* | 364 virtual web_modal::WebContentsModalDialogHost* |
365 GetWebContentsModalDialogHost() OVERRIDE; | 365 GetWebContentsModalDialogHost() OVERRIDE; |
366 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 366 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
367 const gfx::Rect& rect) OVERRIDE; | 367 const gfx::Rect& rect) OVERRIDE; |
368 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, | 368 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, |
369 const signin::ManageAccountsParams& manage_accounts_params) OVERRIDE; | 369 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; | 370 virtual void OverscrollUpdate(int delta_y) OVERRIDE; |
375 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; | 371 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; |
376 virtual void ExecuteExtensionCommand( | 372 virtual void ExecuteExtensionCommand( |
377 const extensions::Extension* extension, | 373 const extensions::Extension* extension, |
378 const extensions::Command& command) OVERRIDE; | 374 const extensions::Command& command) OVERRIDE; |
379 | 375 |
380 // Overridden from BrowserWindowTesting: | 376 // Overridden from BrowserWindowTesting: |
381 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 377 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
382 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 378 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
383 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 379 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_; | 714 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
719 | 715 |
720 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 716 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
721 | 717 |
722 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 718 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
723 | 719 |
724 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 720 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
725 }; | 721 }; |
726 | 722 |
727 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 723 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |