| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 virtual void Paste() OVERRIDE; | 311 virtual void Paste() OVERRIDE; |
| 312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 312 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
| 313 virtual void HideInstant() OVERRIDE; | 313 virtual void HideInstant() OVERRIDE; |
| 314 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 314 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 315 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 315 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 316 const gfx::Rect& bounds) OVERRIDE; | 316 const gfx::Rect& bounds) OVERRIDE; |
| 317 virtual FindBar* CreateFindBar() OVERRIDE; | 317 virtual FindBar* CreateFindBar() OVERRIDE; |
| 318 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 318 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
| 319 const gfx::Rect& rect) OVERRIDE; | 319 const gfx::Rect& rect) OVERRIDE; |
| 320 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 320 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 321 virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect) OVERRIDE; | 321 virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect, |
| 322 int max_length) OVERRIDE; |
| 322 | 323 |
| 323 // Overridden from BrowserWindowTesting: | 324 // Overridden from BrowserWindowTesting: |
| 324 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 325 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
| 325 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 326 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
| 326 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 327 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
| 327 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 328 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
| 328 | 329 |
| 329 // Overridden from TabStripModelObserver: | 330 // Overridden from TabStripModelObserver: |
| 330 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; | 331 virtual void TabDetachedAt(TabContentsWrapper* contents, int index) OVERRIDE; |
| 331 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE; | 332 virtual void TabDeactivated(TabContentsWrapper* contents) OVERRIDE; |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 674 bool force_location_bar_focus_; | 675 bool force_location_bar_focus_; |
| 675 | 676 |
| 676 PendingFullscreenRequest fullscreen_request_; | 677 PendingFullscreenRequest fullscreen_request_; |
| 677 | 678 |
| 678 gfx::ScopedSysColorChangeListener color_change_listener_; | 679 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 679 | 680 |
| 680 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 681 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 681 }; | 682 }; |
| 682 | 683 |
| 683 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 684 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |