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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 FindBar* CreateFindBar() override; | 364 FindBar* CreateFindBar() override; |
365 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() | 365 web_modal::WebContentsModalDialogHost* GetWebContentsModalDialogHost() |
366 override; | 366 override; |
367 void ShowAvatarBubbleFromAvatarButton( | 367 void ShowAvatarBubbleFromAvatarButton( |
368 AvatarBubbleMode mode, | 368 AvatarBubbleMode mode, |
369 const signin::ManageAccountsParams& manage_accounts_params, | 369 const signin::ManageAccountsParams& manage_accounts_params, |
370 signin_metrics::AccessPoint access_point) override; | 370 signin_metrics::AccessPoint access_point) override; |
371 void ShowModalSigninWindow(AvatarBubbleMode mode, | 371 void ShowModalSigninWindow(AvatarBubbleMode mode, |
372 signin_metrics::AccessPoint access_point) override; | 372 signin_metrics::AccessPoint access_point) override; |
373 void CloseModalSigninWindow() override; | 373 void CloseModalSigninWindow() override; |
| 374 void ShowModalSyncConfirmationWindow() override; |
374 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; | 375 int GetRenderViewHeightInsetWithDetachedBookmarkBar() override; |
375 void ExecuteExtensionCommand(const extensions::Extension* extension, | 376 void ExecuteExtensionCommand(const extensions::Extension* extension, |
376 const extensions::Command& command) override; | 377 const extensions::Command& command) override; |
377 ExclusiveAccessContext* GetExclusiveAccessContext() override; | 378 ExclusiveAccessContext* GetExclusiveAccessContext() override; |
378 | 379 |
379 BookmarkBarView* GetBookmarkBarView() const; | 380 BookmarkBarView* GetBookmarkBarView() const; |
380 LocationBarView* GetLocationBarView() const; | 381 LocationBarView* GetLocationBarView() const; |
381 views::View* GetTabContentsContainerView() const; | 382 views::View* GetTabContentsContainerView() const; |
382 ToolbarView* GetToolbarView() const; | 383 ToolbarView* GetToolbarView() const; |
383 | 384 |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; | 714 scoped_ptr<WebContentsCloseHandler> web_contents_close_handler_; |
714 | 715 |
715 SigninViewController signin_view_controller_; | 716 SigninViewController signin_view_controller_; |
716 | 717 |
717 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 718 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
718 | 719 |
719 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 720 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
720 }; | 721 }; |
721 | 722 |
722 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 723 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |