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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 343 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
344 virtual bool IsInstantTabShowing() OVERRIDE; | 344 virtual bool IsInstantTabShowing() OVERRIDE; |
345 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 345 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
346 const gfx::Rect& bounds) OVERRIDE; | 346 const gfx::Rect& bounds) OVERRIDE; |
347 virtual FindBar* CreateFindBar() OVERRIDE; | 347 virtual FindBar* CreateFindBar() OVERRIDE; |
348 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 348 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
349 const gfx::Rect& rect) OVERRIDE; | 349 const gfx::Rect& rect) OVERRIDE; |
350 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 350 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
351 virtual void ShowPasswordGenerationBubble( | 351 virtual void ShowPasswordGenerationBubble( |
352 const gfx::Rect& rect, | 352 const gfx::Rect& rect, |
353 const webkit::forms::PasswordForm& form, | 353 const content::PasswordForm& form, |
354 autofill::PasswordGenerator* password_generator) OVERRIDE; | 354 autofill::PasswordGenerator* password_generator) OVERRIDE; |
355 | 355 |
356 // Overridden from BrowserWindowTesting: | 356 // Overridden from BrowserWindowTesting: |
357 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 357 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
358 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 358 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
359 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 359 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
360 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 360 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
361 | 361 |
362 // Overridden from TabStripModelObserver: | 362 // Overridden from TabStripModelObserver: |
363 virtual void TabDetachedAt(TabContents* contents, int index) OVERRIDE; | 363 virtual void TabDetachedAt(TabContents* contents, int index) OVERRIDE; |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 #if defined(USE_AURA) | 725 #if defined(USE_AURA) |
726 scoped_ptr<SearchViewController> search_view_controller_; | 726 scoped_ptr<SearchViewController> search_view_controller_; |
727 #endif | 727 #endif |
728 | 728 |
729 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 729 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
730 | 730 |
731 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 731 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
732 }; | 732 }; |
733 | 733 |
734 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 734 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |