| 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 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 content::ColorChooser* OpenColorChooser( | 604 content::ColorChooser* OpenColorChooser( |
| 605 content::WebContents* web_contents, | 605 content::WebContents* web_contents, |
| 606 SkColor color, | 606 SkColor color, |
| 607 const std::vector<content::ColorSuggestion>& suggestions) override; | 607 const std::vector<content::ColorSuggestion>& suggestions) override; |
| 608 void RunFileChooser(content::WebContents* web_contents, | 608 void RunFileChooser(content::WebContents* web_contents, |
| 609 const content::FileChooserParams& params) override; | 609 const content::FileChooserParams& params) override; |
| 610 void EnumerateDirectory(content::WebContents* web_contents, | 610 void EnumerateDirectory(content::WebContents* web_contents, |
| 611 int request_id, | 611 int request_id, |
| 612 const base::FilePath& path) override; | 612 const base::FilePath& path) override; |
| 613 bool EmbedsFullscreenWidget() const override; | 613 bool EmbedsFullscreenWidget() const override; |
| 614 void ToggleFullscreenModeForTab(content::WebContents* web_contents, | 614 void EnterFullscreenModeForTab(content::WebContents* web_contents, |
| 615 bool enter_fullscreen) override; | 615 const GURL& origin) override; |
| 616 void ExitFullscreenModeForTab(content::WebContents* web_contents) override; |
| 616 bool IsFullscreenForTabOrPending( | 617 bool IsFullscreenForTabOrPending( |
| 617 const content::WebContents* web_contents) const override; | 618 const content::WebContents* web_contents) const override; |
| 618 void RegisterProtocolHandler(content::WebContents* web_contents, | 619 void RegisterProtocolHandler(content::WebContents* web_contents, |
| 619 const std::string& protocol, | 620 const std::string& protocol, |
| 620 const GURL& url, | 621 const GURL& url, |
| 621 bool user_gesture) override; | 622 bool user_gesture) override; |
| 622 void UnregisterProtocolHandler(content::WebContents* web_contents, | 623 void UnregisterProtocolHandler(content::WebContents* web_contents, |
| 623 const std::string& protocol, | 624 const std::string& protocol, |
| 624 const GURL& url, | 625 const GURL& url, |
| 625 bool user_gesture) override; | 626 bool user_gesture) override; |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 // The following factory is used for chrome update coalescing. | 970 // The following factory is used for chrome update coalescing. |
| 970 base::WeakPtrFactory<Browser> chrome_updater_factory_; | 971 base::WeakPtrFactory<Browser> chrome_updater_factory_; |
| 971 | 972 |
| 972 // The following factory is used to close the frame at a later time. | 973 // The following factory is used to close the frame at a later time. |
| 973 base::WeakPtrFactory<Browser> weak_factory_; | 974 base::WeakPtrFactory<Browser> weak_factory_; |
| 974 | 975 |
| 975 DISALLOW_COPY_AND_ASSIGN(Browser); | 976 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 976 }; | 977 }; |
| 977 | 978 |
| 978 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 979 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |