OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 333 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
334 virtual void HideInstant() OVERRIDE; | 334 virtual void HideInstant() OVERRIDE; |
335 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 335 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
336 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 336 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
337 const gfx::Rect& bounds) OVERRIDE; | 337 const gfx::Rect& bounds) OVERRIDE; |
338 virtual FindBar* CreateFindBar() OVERRIDE; | 338 virtual FindBar* CreateFindBar() OVERRIDE; |
339 #if defined(OS_CHROMEOS) | 339 #if defined(OS_CHROMEOS) |
340 virtual void ShowMobileSetup() OVERRIDE; | 340 virtual void ShowMobileSetup() OVERRIDE; |
341 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE; | 341 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE; |
342 #endif | 342 #endif |
343 virtual void ShowAvatarBubble(TabContents* tab_contents, | 343 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
344 const gfx::Rect& rect) OVERRIDE; | 344 const gfx::Rect& rect) OVERRIDE; |
345 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 345 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
346 | 346 |
347 // Overridden from BrowserWindowTesting: | 347 // Overridden from BrowserWindowTesting: |
348 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; | 348 virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE; |
349 virtual LocationBarView* GetLocationBarView() const OVERRIDE; | 349 virtual LocationBarView* GetLocationBarView() const OVERRIDE; |
350 virtual views::View* GetTabContentsContainerView() const OVERRIDE; | 350 virtual views::View* GetTabContentsContainerView() const OVERRIDE; |
351 virtual views::View* GetSidebarContainerView() const OVERRIDE; | 351 virtual views::View* GetSidebarContainerView() const OVERRIDE; |
352 virtual ToolbarView* GetToolbarView() const OVERRIDE; | 352 virtual ToolbarView* GetToolbarView() const OVERRIDE; |
353 | 353 |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 // If this flag is set then SetFocusToLocationBar() will set focus to the | 742 // If this flag is set then SetFocusToLocationBar() will set focus to the |
743 // location bar even if the browser window is not active. | 743 // location bar even if the browser window is not active. |
744 bool force_location_bar_focus_; | 744 bool force_location_bar_focus_; |
745 | 745 |
746 PendingFullscreenRequest fullscreen_request_; | 746 PendingFullscreenRequest fullscreen_request_; |
747 | 747 |
748 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 748 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
749 }; | 749 }; |
750 | 750 |
751 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 751 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |