| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 virtual void Copy() OVERRIDE; | 356 virtual void Copy() OVERRIDE; |
| 357 virtual void Paste() OVERRIDE; | 357 virtual void Paste() OVERRIDE; |
| 358 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 358 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 359 const gfx::Rect& bounds) OVERRIDE; | 359 const gfx::Rect& bounds) OVERRIDE; |
| 360 virtual FindBar* CreateFindBar() OVERRIDE; | 360 virtual FindBar* CreateFindBar() OVERRIDE; |
| 361 virtual web_modal::WebContentsModalDialogHost* | 361 virtual web_modal::WebContentsModalDialogHost* |
| 362 GetWebContentsModalDialogHost() OVERRIDE; | 362 GetWebContentsModalDialogHost() OVERRIDE; |
| 363 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 363 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 364 const gfx::Rect& rect) OVERRIDE; | 364 const gfx::Rect& rect) OVERRIDE; |
| 365 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, | 365 virtual void ShowAvatarBubbleFromAvatarButton(AvatarBubbleMode mode, |
| 366 signin::GAIAServiceType service_type) OVERRIDE; | 366 const signin::ManageAccountsParams& manage_accounts_params) OVERRIDE; |
| 367 virtual void ShowPasswordGenerationBubble( | 367 virtual void ShowPasswordGenerationBubble( |
| 368 const gfx::Rect& rect, | 368 const gfx::Rect& rect, |
| 369 const autofill::PasswordForm& form, | 369 const autofill::PasswordForm& form, |
| 370 autofill::PasswordGenerator* password_generator) OVERRIDE; | 370 autofill::PasswordGenerator* password_generator) OVERRIDE; |
| 371 virtual void OverscrollUpdate(int delta_y) OVERRIDE; | 371 virtual void OverscrollUpdate(int delta_y) OVERRIDE; |
| 372 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; | 372 virtual int GetRenderViewHeightInsetWithDetachedBookmarkBar() OVERRIDE; |
| 373 virtual void ExecuteExtensionCommand( | 373 virtual void ExecuteExtensionCommand( |
| 374 const extensions::Extension* extension, | 374 const extensions::Extension* extension, |
| 375 const extensions::Command& command) OVERRIDE; | 375 const extensions::Command& command) OVERRIDE; |
| 376 virtual void ShowPageActionPopup( | 376 virtual void ShowPageActionPopup( |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 719 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; | 719 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
| 720 | 720 |
| 721 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 721 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 722 | 722 |
| 723 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 723 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 724 | 724 |
| 725 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 725 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 726 }; | 726 }; |
| 727 | 727 |
| 728 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 728 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |