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