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_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 virtual void ContentsZoomChange(bool zoom_in) OVERRIDE; | 560 virtual void ContentsZoomChange(bool zoom_in) OVERRIDE; |
561 virtual void WebContentsFocused(content::WebContents* content) OVERRIDE; | 561 virtual void WebContentsFocused(content::WebContents* content) OVERRIDE; |
562 virtual bool TakeFocus(content::WebContents* source, bool reverse) OVERRIDE; | 562 virtual bool TakeFocus(content::WebContents* source, bool reverse) OVERRIDE; |
563 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 563 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
564 virtual void BeforeUnloadFired(content::WebContents* source, | 564 virtual void BeforeUnloadFired(content::WebContents* source, |
565 bool proceed, | 565 bool proceed, |
566 bool* proceed_to_fire_unload) OVERRIDE; | 566 bool* proceed_to_fire_unload) OVERRIDE; |
567 virtual bool ShouldFocusLocationBarByDefault( | 567 virtual bool ShouldFocusLocationBarByDefault( |
568 content::WebContents* source) OVERRIDE; | 568 content::WebContents* source) OVERRIDE; |
569 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; | 569 virtual void SetFocusToLocationBar(bool select_all) OVERRIDE; |
570 virtual void RenderWidgetShowing() OVERRIDE; | |
571 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 570 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
572 virtual void ViewSourceForTab(content::WebContents* source, | 571 virtual void ViewSourceForTab(content::WebContents* source, |
573 const GURL& page_url) OVERRIDE; | 572 const GURL& page_url) OVERRIDE; |
574 virtual void ViewSourceForFrame( | 573 virtual void ViewSourceForFrame( |
575 content::WebContents* source, | 574 content::WebContents* source, |
576 const GURL& frame_url, | 575 const GURL& frame_url, |
577 const content::PageState& frame_page_state) OVERRIDE; | 576 const content::PageState& frame_page_state) OVERRIDE; |
578 virtual void ShowRepostFormWarningDialog( | 577 virtual void ShowRepostFormWarningDialog( |
579 content::WebContents* source) OVERRIDE; | 578 content::WebContents* source) OVERRIDE; |
580 virtual bool ShouldCreateWebContents( | 579 virtual bool ShouldCreateWebContents( |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
927 base::WeakPtrFactory<Browser> weak_factory_; | 926 base::WeakPtrFactory<Browser> weak_factory_; |
928 | 927 |
929 scoped_ptr<BrowserLanguageStateObserver> language_state_observer_; | 928 scoped_ptr<BrowserLanguageStateObserver> language_state_observer_; |
930 | 929 |
931 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; | 930 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; |
932 | 931 |
933 DISALLOW_COPY_AND_ASSIGN(Browser); | 932 DISALLOW_COPY_AND_ASSIGN(Browser); |
934 }; | 933 }; |
935 | 934 |
936 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 935 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |