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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 int request_id, | 609 int request_id, |
610 const base::FilePath& path) OVERRIDE; | 610 const base::FilePath& path) OVERRIDE; |
611 virtual bool EmbedsFullscreenWidget() const OVERRIDE; | 611 virtual bool EmbedsFullscreenWidget() const OVERRIDE; |
612 virtual void ToggleFullscreenModeForTab(content::WebContents* web_contents, | 612 virtual void ToggleFullscreenModeForTab(content::WebContents* web_contents, |
613 bool enter_fullscreen) OVERRIDE; | 613 bool enter_fullscreen) OVERRIDE; |
614 virtual bool IsFullscreenForTabOrPending( | 614 virtual bool IsFullscreenForTabOrPending( |
615 const content::WebContents* web_contents) const OVERRIDE; | 615 const content::WebContents* web_contents) const OVERRIDE; |
616 virtual void RegisterProtocolHandler(content::WebContents* web_contents, | 616 virtual void RegisterProtocolHandler(content::WebContents* web_contents, |
617 const std::string& protocol, | 617 const std::string& protocol, |
618 const GURL& url, | 618 const GURL& url, |
619 const base::string16& title, | |
620 bool user_gesture) OVERRIDE; | 619 bool user_gesture) OVERRIDE; |
621 virtual void UpdatePreferredSize(content::WebContents* source, | 620 virtual void UpdatePreferredSize(content::WebContents* source, |
622 const gfx::Size& pref_size) OVERRIDE; | 621 const gfx::Size& pref_size) OVERRIDE; |
623 virtual void ResizeDueToAutoResize(content::WebContents* source, | 622 virtual void ResizeDueToAutoResize(content::WebContents* source, |
624 const gfx::Size& new_size) OVERRIDE; | 623 const gfx::Size& new_size) OVERRIDE; |
625 virtual void FindReply(content::WebContents* web_contents, | 624 virtual void FindReply(content::WebContents* web_contents, |
626 int request_id, | 625 int request_id, |
627 int number_of_matches, | 626 int number_of_matches, |
628 const gfx::Rect& selection_rect, | 627 const gfx::Rect& selection_rect, |
629 int active_match_ordinal, | 628 int active_match_ordinal, |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
937 base::WeakPtrFactory<Browser> weak_factory_; | 936 base::WeakPtrFactory<Browser> weak_factory_; |
938 | 937 |
939 scoped_ptr<BrowserContentTranslateDriverObserver> translate_driver_observer_; | 938 scoped_ptr<BrowserContentTranslateDriverObserver> translate_driver_observer_; |
940 | 939 |
941 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; | 940 scoped_ptr<chrome::ValidationMessageBubble> validation_message_bubble_; |
942 | 941 |
943 DISALLOW_COPY_AND_ASSIGN(Browser); | 942 DISALLOW_COPY_AND_ASSIGN(Browser); |
944 }; | 943 }; |
945 | 944 |
946 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 945 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
OLD | NEW |