| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 void HandleKeyboardEvent( | 357 void HandleKeyboardEvent( |
| 358 const content::NativeWebKeyboardEvent& event) override; | 358 const content::NativeWebKeyboardEvent& event) override; |
| 359 void CutCopyPaste(int command_id) override; | 359 void CutCopyPaste(int command_id) override; |
| 360 WindowOpenDisposition GetDispositionForPopupBounds( | 360 WindowOpenDisposition GetDispositionForPopupBounds( |
| 361 const gfx::Rect& bounds) override; | 361 const gfx::Rect& bounds) override; |
| 362 FindBar* CreateFindBar() override; | 362 FindBar* CreateFindBar() override; |
| 363 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() | 363 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() |
| 364 override; | 364 override; |
| 365 void ShowAvatarBubbleFromAvatarButton( | 365 void ShowAvatarBubbleFromAvatarButton( |
| 366 AvatarBubbleMode mode, | 366 AvatarBubbleMode mode, |
| 367 const signin::ManageAccountsParams& manage_accounts_params) override; | 367 const signin::ManageAccountsParams& manage_accounts_params, |
| 368 void ShowModalSigninWindow(AvatarBubbleMode mode) override; | 368 signin_metrics::AccessPoint access_point) override; |
| 369 void ShowModalSigninWindow(AvatarBubbleMode mode, |
| 370 signin_metrics::AccessPoint access_point) override; |
| 369 void CloseModalSigninWindow() override; | 371 void CloseModalSigninWindow() override; |
| 370 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; | 372 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; |
| 371 void ExecuteExtensionCommand(const extensions::Extension* extension, | 373 void ExecuteExtensionCommand(const extensions::Extension* extension, |
| 372 const extensions::Command& command) override; | 374 const extensions::Command& command) override; |
| 373 ExclusiveAccessContext* GetExclusiveAccessContext() override; | 375 ExclusiveAccessContext* GetExclusiveAccessContext() override; |
| 374 | 376 |
| 375 BookmarkBarView* GetBookmarkBarView() const; | 377 BookmarkBarView* GetBookmarkBarView() const; |
| 376 LocationBarView* GetLocationBarView() const; | 378 LocationBarView* GetLocationBarView() const; |
| 377 views::View* GetTabContentsContainerView() const; | 379 views::View* GetTabContentsContainerView() const; |
| 378 ToolbarView* GetToolbarView() const; | 380 ToolbarView* GetToolbarView() const; |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 711 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
| 710 | 712 |
| 711 SigninViewController signin_view_controller_; | 713 SigninViewController signin_view_controller_; |
| 712 | 714 |
| 713 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 715 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 714 | 716 |
| 715 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 717 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 716 }; | 718 }; |
| 717 | 719 |
| 718 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 720 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |